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.
26 lines
687 B
26 lines
687 B
import { observer } from "mobx-react"; |
|
import DevTools from "mobx-react-devtools"; |
|
import * as React from "react"; |
|
import { Container } from "semantic-ui-react"; |
|
|
|
import { DevicesView, MessagesView } from "@app/components"; |
|
import MessageTest from "@app/components/MessageTest"; |
|
|
|
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 ( |
|
<Container> |
|
<MessageTest /> |
|
<DevicesView /> |
|
<MessagesView /> |
|
<DevTools /> |
|
</Container> |
|
); |
|
} |
|
} |
|
|
|
export default observer(App);
|
|
|