import { ReactNode } from 'react'; interface FieldProps { label: ReactNode; children: ReactNode; isEditing?: boolean; } export function Field({ label, children, isEditing: _isEditing = false }: FieldProps) { return (
{children}
; } interface FieldValueProps { children: ReactNode; className?: string; } export function FieldValue({ children, className = '' }: FieldValueProps) { return{children}
; } interface FieldActionsProps { children: ReactNode; } export function FieldActions({ children }: FieldActionsProps) { return