13 lines
206 B
TypeScript
13 lines
206 B
TypeScript
|
import * as React from "react";
|
||
|
import * as ReactDOM from "react-dom";
|
||
|
|
||
|
import App from "./components/app";
|
||
|
|
||
|
import "./style/default.scss";
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<App/>,
|
||
|
document.getElementById("root")
|
||
|
);
|
||
|
|