FILE / Unmei/Frontend
src/index.tsx
Исходный файл и его история в репозитории.
24 lines
693 B
TypeScript
Executable File
24 lines
693 B
TypeScript
Executable File
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { BrowserRouter } from "react-router-dom";
|
|
import { Provider } from 'react-redux';
|
|
import store from "./store/store";
|
|
import * as Sentry from '@sentry/react';
|
|
import App from './components/App/App';
|
|
import * as serviceWorkerRegistration from './serviceWorkerRegistration';
|
|
|
|
if(process.env.NODE_ENV === 'production')
|
|
Sentry.init({
|
|
dsn: "https://27a5473611834ece9aca26216d79ad86@sentry.io/1810028"
|
|
});
|
|
|
|
ReactDOM.render(
|
|
<BrowserRouter>
|
|
<Provider store={store}>
|
|
<App/>
|
|
</Provider>
|
|
</BrowserRouter>,
|
|
document.getElementById('root'));
|
|
|
|
serviceWorkerRegistration.register();
|