update project to use date range

This commit is contained in:
Ryan Polley
2020-11-09 15:59:24 -06:00
parent d4816291b4
commit 81ad16ae8a
2 changed files with 43 additions and 22 deletions

View File

@ -52,8 +52,16 @@ const ProjectModal = () => {
<Input
type="date"
label={t('shared.forms.date')}
{...getFieldProps(formik, schema, 'date')}
label={t('shared.forms.startDate')}
placeholder="6th August 208"
{...getFieldProps(formik, schema, 'startDate')}
/>
<Input
type="date"
label={t('shared.forms.endDate')}
placeholder="6th August 208"
{...getFieldProps(formik, schema, 'endDate')}
/>
<Input