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.
14 lines
375 B
14 lines
375 B
8 years ago
|
import * as React from "react";
|
||
|
import * as ReactDOM from "react-dom";
|
||
|
|
||
|
import App from "./App";
|
||
|
import {MqttApiClient} from "./mqtt";
|
||
|
|
||
|
const client = new MqttApiClient();
|
||
|
client.start();
|
||
|
const device = client.getDevice("grinklers");
|
||
|
|
||
|
const container = document.createElement("div");
|
||
|
document.body.appendChild(container);
|
||
|
|
||
|
ReactDOM.render(<App device={device} />, container);
|