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.
17 lines
413 B
17 lines
413 B
import { observer } from "mobx-react"; |
|
import * as React from "react"; |
|
import { Item } from "semantic-ui-react"; |
|
|
|
import DeviceView from "@app/components/DeviceView"; |
|
|
|
class DevicesView extends React.Component { |
|
render() { |
|
return ( |
|
<Item.Group divided> |
|
<DeviceView deviceId="grinklers" /> |
|
</Item.Group> |
|
); |
|
} |
|
} |
|
|
|
export default observer(DevicesView);
|
|
|