2020-05-27 13:51:41 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
2020-05-27 18:49:49 +00:00
|
|
|
import TimezonePicker from '../components/General/TimezonePicker';
|
2020-05-27 13:51:41 +00:00
|
|
|
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>
|
2020-05-27 13:51:41 +00:00
|
|
|
<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 />
|
2020-05-27 13:51:41 +00:00
|
|
|
</FormGroup>
|
|
|
|
</Form>
|
|
|
|
</Container>
|
|
|
|
);
|
|
|
|
}
|