'use client' import type { ReactNode } from 'react' interface TextShortFieldProps { name: string label: ReactNode value: string required: boolean placeholder?: string onChange: (value: string) => void error?: string } export function TextShortField({ name, label, value, required, placeholder = '', onChange, error, }: TextShortFieldProps) { return (
{error}
)}