2017-08-29 23:21:36 -06:00
|
|
|
import { observer } from "mobx-react";
|
2017-10-09 22:09:42 -06:00
|
|
|
// import DevTools from "mobx-react-devtools";
|
2017-06-30 01:08:51 -06:00
|
|
|
import * as React from "react";
|
2017-09-10 21:38:07 -06:00
|
|
|
import { Container } from "semantic-ui-react";
|
2017-09-06 23:54:22 -06:00
|
|
|
|
2017-09-10 12:30:23 -06:00
|
|
|
import { DevicesView, MessagesView } from "@app/components";
|
2017-10-09 22:09:42 -06:00
|
|
|
// import MessageTest from "@app/components/MessageTest";
|
2017-08-29 23:21:36 -06:00
|
|
|
|
2017-09-07 10:14:10 -06:00
|
|
|
import "@app/styles/app.css";
|
2017-08-29 23:21:36 -06:00
|
|
|
import "font-awesome/css/font-awesome.css";
|
2017-06-20 08:45:25 -06:00
|
|
|
import "semantic-ui-css/semantic.css";
|
|
|
|
|
2017-09-10 12:30:23 -06:00
|
|
|
class App extends React.Component {
|
2017-06-20 08:45:25 -06:00
|
|
|
render() {
|
2017-08-29 23:21:36 -06:00
|
|
|
return (
|
2017-09-10 21:38:07 -06:00
|
|
|
<Container>
|
2017-09-15 16:01:16 -06:00
|
|
|
{/* <MessageTest /> */}
|
2017-09-10 12:30:23 -06:00
|
|
|
<DevicesView />
|
2017-09-10 21:38:07 -06:00
|
|
|
<MessagesView />
|
2017-09-15 16:01:16 -06:00
|
|
|
{/* <DevTools /> */}
|
2017-09-10 21:38:07 -06:00
|
|
|
</Container>
|
2017-08-29 23:21:36 -06:00
|
|
|
);
|
2017-06-20 08:45:25 -06:00
|
|
|
}
|
|
|
|
}
|
2017-09-10 12:30:23 -06:00
|
|
|
|
|
|
|
export default observer(App);
|