Add SelectedDates component

This commit is contained in:
2020-06-02 12:48:28 +02:00
parent f03fc0c461
commit 7ae26e39c4
3 changed files with 105 additions and 17 deletions

View File

@@ -1,18 +1,10 @@
import React, { useState } from 'react';
import {
Container,
Form,
FormControl,
FormGroup,
Input,
Divider,
Icon,
} from 'rsuite';
import { DateTime } from 'luxon';
import React from 'react';
import { Container, Form, FormControl, FormGroup, Input } from 'rsuite';
import TimezonePicker from '../components/General/TimezonePicker';
import DaySelector from '../components/Schedule/DaySelector';
import DurationSelector from '../components/Schedule/DurationSelector';
import SelectedDates from '../components/Schedule/SelectedDates';
export default function Schedule() {
return (
@@ -40,6 +32,9 @@ export default function Schedule() {
<FormGroup>
<DaySelector />
</FormGroup>
<FormGroup>
<SelectedDates />
</FormGroup>
</Form>
</Container>
);