interface Props { label: string; value?: string; type?: string; } export default function FormInput({ label, value, type = "text", }: Props) { return (
); }