solana/explorer/src/index.tsx

13 lines
458 B
TypeScript
Raw Normal View History

2020-03-13 02:07:58 -07:00
import React from 'react';
import ReactDOM from 'react-dom';
2020-03-13 02:45:34 -07:00
import './scss/theme.scss';
2020-03-13 02:07:58 -07:00
import App from './App';
import * as serviceWorker from './serviceWorker';
ReactDOM.render(<App />, document.getElementById('root'));
// 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();