Add "confirm dates" button

This commit is contained in:
rui hildt 2020-06-02 15:42:48 +02:00
parent 0ca7e66a4b
commit 38858668eb
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import React from 'react'; import React from 'react';
import { Container, Form, FormControl, FormGroup, Input } from 'rsuite'; import { Container, Form, FormControl, FormGroup, Input, Button } from 'rsuite';
import TimezonePicker from '../components/General/TimezonePicker'; import TimezonePicker from '../components/General/TimezonePicker';
import DaySelector from '../components/Schedule/DaySelector'; import DaySelector from '../components/Schedule/DaySelector';
@ -35,6 +35,9 @@ export default function Schedule() {
<FormGroup> <FormGroup>
<SelectedDates /> <SelectedDates />
</FormGroup> </FormGroup>
<FormGroup>
<Button>Confirm dates</Button>
</FormGroup>
</Form> </Form>
</Container> </Container>
); );