diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-27 00:11:05 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2020-03-27 00:11:05 -0700 |
commit | 79c36b9a84623fb99db0ab71cc9a31391f06489e (patch) | |
tree | 75bc69a49065e035941ab12185f691688786b09b /modern/src/DevicePage.js | |
parent | 94e7e64ec481cd004546f02869c1c0dd2904a406 (diff) | |
download | trackermap-web-79c36b9a84623fb99db0ab71cc9a31391f06489e.tar.gz trackermap-web-79c36b9a84623fb99db0ab71cc9a31391f06489e.tar.bz2 trackermap-web-79c36b9a84623fb99db0ab71cc9a31391f06489e.zip |
Partially implement device menu
Diffstat (limited to 'modern/src/DevicePage.js')
-rw-r--r-- | modern/src/DevicePage.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modern/src/DevicePage.js b/modern/src/DevicePage.js new file mode 100644 index 00000000..73f1dc86 --- /dev/null +++ b/modern/src/DevicePage.js @@ -0,0 +1,18 @@ +import React, { Component } from 'react'; +import MainToobar from './MainToolbar'; +import withStyles from '@material-ui/core/styles/withStyles'; +import withWidth from '@material-ui/core/withWidth'; + +const styles = theme => ({}); + +class DevicePage extends Component { + render() { + return ( + <div> + <MainToobar history={this.props.history} /> + </div> + ); + } +} + +export default withWidth()(withStyles(styles)(DevicePage)); |