blob: 24a06d19321bdfa13d342fc51501033d74e0ee39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import React from 'react';
import MainToobar from './MainToolbar';
import { useHistory } from 'react-router-dom';
import { makeStyles } from '@material-ui/core/styles';
import TextField from '@material-ui/core/TextField';
import Container from '@material-ui/core/Container';
import Button from '@material-ui/core/Button';
import FormControl from '@material-ui/core/FormControl';
import t from './common/localization';
const useStyles = makeStyles(theme => ({
container: {
marginTop: theme.spacing(2),
},
buttons: {
display: 'flex',
justifyContent: 'space-evenly',
'& > *': {
flexBasis: '33%',
},
},
}));
const DevicePage = () => {
const history = useHistory();
const classes = useStyles();
return (
<>
<MainToobar history={history} />
<Container maxWidth='xs' className={classes.container}>
<form>
<TextField margin="normal" fullWidth label={t('sharedName')} variant="filled" />
<TextField margin="normal" fullWidth label={t('deviceIdentifier')} variant="filled" />
<FormControl fullWidth margin="normal">
<div className={classes.buttons}>
<Button type="button" color="primary" variant="outlined">
{t('sharedCancel')}
</Button>
<Button type="button" color="primary" variant="contained">
{t('sharedSave')}
</Button>
</div>
</FormControl>
</form>
</Container>
</>
);
}
export default DevicePage;
|