diff --git a/components/inputWrapper.tsx b/components/inputWrapper.tsx index 2344455..6881d8c 100644 --- a/components/inputWrapper.tsx +++ b/components/inputWrapper.tsx @@ -4,7 +4,7 @@ import Required from './required' export default function Input(props: { label: string name?: string - required: boolean + required?: boolean children: React.ReactNode }) { const { label, name, required, children } = props @@ -24,4 +24,4 @@ export default function Input(props: { ) -} +} \ No newline at end of file