1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-19 21:40:33 +09:00
namae/web/src/index.tsx

19 lines
415 B
TypeScript
Raw Normal View History

2019-09-17 14:30:26 +09:00
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import * as serviceWorker from './serviceWorker';
import {FullScreenSuspense} from './util/suspense';
2019-09-24 13:55:07 +09:00
import {initSentry} from './util/analytics';
2019-09-17 14:30:26 +09:00
import './util/i18n';
2019-08-03 13:36:29 +09:00
2019-09-24 13:55:07 +09:00
initSentry();
ReactDOM.render(
2019-08-14 18:46:57 +09:00
<FullScreenSuspense>
2019-08-03 13:36:29 +09:00
<App />
2019-09-24 13:55:07 +09:00
</FullScreenSuspense>,
document.getElementById('root'),
2019-09-17 14:30:26 +09:00
);
2019-08-01 01:10:09 +09:00
2019-09-17 14:30:26 +09:00
serviceWorker.register({});