frontend/src/screens/Schedule.js

30 lines
634 B
JavaScript

import React from 'react';
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>
<Form>
<FormGroup>
<FormControl name='title' type='text' placeholder='title' />
</FormGroup>
<FormGroup>
<Input
name='description'
componentClass='textarea'
type='text'
rows={3}
placeholder='Description'
/>
</FormGroup>
<FormGroup>
<TimezonePicker />
</FormGroup>
</Form>
</Container>
);
}