You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { observer } from "mobx-react";
|
|
|
|
import DevTools from "mobx-react-devtools";
|
|
|
|
import * as React from "react";
|
|
|
|
import { Item } from "semantic-ui-react";
|
|
|
|
|
|
|
|
import { DevicesView, MessagesView } from "@app/components";
|
|
|
|
|
|
|
|
import "@app/styles/app.css";
|
|
|
|
import "font-awesome/css/font-awesome.css";
|
|
|
|
import "semantic-ui-css/semantic.css";
|
|
|
|
|
|
|
|
class App extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Item.Group divided>
|
|
|
|
<MessagesView />
|
|
|
|
<DevicesView />
|
|
|
|
<DevTools />
|
|
|
|
</Item.Group>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default observer(App);
|