2018-06-03 21:12:40 +03:00
|
|
|
import 'bootstrap/dist/css/bootstrap.min.css';
|
2018-05-13 09:57:47 +03:00
|
|
|
import React from 'react';
|
2018-10-30 22:41:36 +03:00
|
|
|
import { render } from 'react-dom';
|
2018-06-03 21:12:40 +03:00
|
|
|
import { Provider } from 'react-redux';
|
2018-06-03 14:15:52 +03:00
|
|
|
import { BrowserRouter } from 'react-router-dom';
|
2018-11-01 10:20:33 +03:00
|
|
|
import { homepage } from '../package.json';
|
2018-05-13 09:57:47 +03:00
|
|
|
import registerServiceWorker from './registerServiceWorker';
|
2018-12-17 22:03:36 +03:00
|
|
|
import container from './container';
|
2018-12-18 00:18:47 +03:00
|
|
|
import store from './container/store';
|
2019-01-07 23:00:28 +03:00
|
|
|
import { fixLeafletIcons } from './utils/utils';
|
|
|
|
import 'react-datepicker/dist/react-datepicker.css';
|
|
|
|
import 'leaflet/dist/leaflet.css';
|
2018-08-26 00:39:27 +03:00
|
|
|
import './common/react-tagsinput.scss';
|
2018-12-17 22:03:36 +03:00
|
|
|
import './index.scss';
|
2018-05-13 09:57:47 +03:00
|
|
|
|
2019-01-07 23:00:28 +03:00
|
|
|
// This overwrites icons used for leaflet maps, fixing some issues caused by webpack while processing the CSS
|
|
|
|
fixLeafletIcons();
|
|
|
|
|
2019-03-04 22:40:26 +03:00
|
|
|
const { App, ScrollToTop, ErrorHandler } = container;
|
2018-06-03 21:12:40 +03:00
|
|
|
|
2018-10-30 22:41:36 +03:00
|
|
|
render(
|
2018-06-03 21:12:40 +03:00
|
|
|
<Provider store={store}>
|
2018-11-01 10:20:33 +03:00
|
|
|
<BrowserRouter basename={homepage}>
|
2019-03-04 22:40:26 +03:00
|
|
|
<ErrorHandler>
|
|
|
|
<ScrollToTop>
|
|
|
|
<App />
|
|
|
|
</ScrollToTop>
|
|
|
|
</ErrorHandler>
|
2018-06-03 21:12:40 +03:00
|
|
|
</BrowserRouter>
|
|
|
|
</Provider>,
|
2018-06-03 14:15:52 +03:00
|
|
|
document.getElementById('root')
|
|
|
|
);
|
2018-05-13 09:57:47 +03:00
|
|
|
registerServiceWorker();
|