frontend/src/screens/Schedule.js

30 lines
634 B
JavaScript
Raw Normal View History

import React from 'react';
2020-05-27 18:49:49 +00:00
import TimezonePicker from '../components/General/TimezonePicker';
import { Container, Form, FormControl, FormGroup, Input } from 'rsuite';
export default function Schedule() {
return (
<Container>
<h3>Schedule a meeting</h3>
2020-05-27 18:49:49 +00:00
<Form>
<FormGroup>
<FormControl name='title' type='text' placeholder='title' />
</FormGroup>
<FormGroup>
<Input
name='description'
componentClass='textarea'
type='text'
rows={3}
placeholder='Description'
/>
</FormGroup>
<FormGroup>
2020-05-27 18:49:49 +00:00
<TimezonePicker />
</FormGroup>
</Form>
</Container>
);
}