mirror of
https://github.com/uetchy/namae.git
synced 2025-03-20 05:50:32 +09:00
19 lines
415 B
TypeScript
19 lines
415 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from './App';
|
|
import * as serviceWorker from './serviceWorker';
|
|
import {FullScreenSuspense} from './util/suspense';
|
|
import {initSentry} from './util/analytics';
|
|
import './util/i18n';
|
|
|
|
initSentry();
|
|
|
|
ReactDOM.render(
|
|
<FullScreenSuspense>
|
|
<App />
|
|
</FullScreenSuspense>,
|
|
document.getElementById('root'),
|
|
);
|
|
|
|
serviceWorker.register({});
|