fix build by making name optional

This commit is contained in:
Thomas Ruoff
2020-11-01 22:22:41 +01:00
parent aa2c9a9cab
commit 28035f9516

View File

@@ -3,7 +3,7 @@ import Required from './required'
export default function Input(props: {
label: string
name: string
name?: string
required: boolean
children: React.ReactNode
}) {