solana/explorer/src/index.tsx

13 lines
458 B
TypeScript
Raw Normal View History

2020-03-13 03:23:46 -07:00
import React from "react";
import ReactDOM from "react-dom";
import "./scss/theme.scss";
import App from "./App";
import * as serviceWorker from "./serviceWorker";
2020-03-13 02:07:58 -07:00
2020-03-13 03:23:46 -07:00
ReactDOM.render(<App />, document.getElementById("root"));
2020-03-13 02:07:58 -07:00
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();