-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
we should be able to do something like
<Form ... renderInputs={{
"text": ({rawValues, value, onChange, error}) => <input type="text" className="is-invalid" value={value} onChange={e => onChange(e.target.value)} />,
"date": ({rawValues, value, onChange, error}) => <input type="date" className="is-invalid" value={value} onChange={e => onChange(e.target.value)} />
}} />and be able to not redefine every component kind without breaking everything
Reactions are currently unavailable