2019-05-24 10:14:41 +02:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
2019-06-16 12:18:48 +02:00
|
|
|
import { Container, Form } from 'semantic-ui-react';
|
2019-05-27 19:35:00 +02:00
|
|
|
|
2019-05-27 14:39:22 +02:00
|
|
|
import MainMenu from '../../components/MainMenu';
|
|
|
|
|
|
2019-05-24 10:14:41 +02:00
|
|
|
class Home extends Component {
|
|
|
|
|
|
|
|
|
|
render () {
|
|
|
|
|
return (
|
2019-05-27 19:35:00 +02:00
|
|
|
<Container>
|
2019-05-27 14:39:22 +02:00
|
|
|
<MainMenu/>
|
2019-05-28 13:04:33 +02:00
|
|
|
<h3>Report</h3>
|
2019-05-24 10:14:41 +02:00
|
|
|
<hr/>
|
2019-05-28 13:04:33 +02:00
|
|
|
<Form>
|
|
|
|
|
<Form.Group widths="equal">
|
|
|
|
|
<Form.Input
|
|
|
|
|
fluid
|
|
|
|
|
required
|
|
|
|
|
label="Start date"
|
|
|
|
|
type="date"
|
|
|
|
|
/>
|
|
|
|
|
<Form.Input
|
|
|
|
|
fluid
|
|
|
|
|
required
|
|
|
|
|
label="End date"
|
|
|
|
|
type="date"
|
|
|
|
|
/>
|
|
|
|
|
</Form.Group>
|
2019-05-28 13:36:07 +02:00
|
|
|
<Form.Button>Show report</Form.Button>
|
2019-05-28 13:04:33 +02:00
|
|
|
</Form>
|
2019-05-27 19:35:00 +02:00
|
|
|
</Container>
|
2019-05-24 10:14:41 +02:00
|
|
|
);
|
|
|
|
|
}
|
2019-05-23 19:19:54 +02:00
|
|
|
}
|
2019-05-24 10:14:41 +02:00
|
|
|
|
|
|
|
|
export default Home;
|