2021-02-10 21:28:36 +00:00
|
|
|
import React from 'react'
|
2021-02-14 17:54:05 +00:00
|
|
|
import {Settings} from 'luxon'
|
2021-02-10 21:28:36 +00:00
|
|
|
import ReactDOM from 'react-dom'
|
2021-11-26 12:37:26 +00:00
|
|
|
import 'fomantic-ui-less/semantic.less'
|
2021-05-07 15:29:26 +00:00
|
|
|
|
2021-02-10 21:28:36 +00:00
|
|
|
import './index.css'
|
|
|
|
import App from './App'
|
|
|
|
|
2021-10-27 15:32:07 +00:00
|
|
|
import 'maplibre-gl/dist/maplibre-gl.css'
|
|
|
|
|
2021-02-10 21:28:36 +00:00
|
|
|
import {Provider} from 'react-redux'
|
|
|
|
|
2021-02-20 18:31:18 +00:00
|
|
|
import store from './store'
|
2021-01-19 13:51:36 +00:00
|
|
|
|
2021-02-14 17:54:05 +00:00
|
|
|
// TODO: remove
|
|
|
|
Settings.defaultLocale = 'de-DE'
|
|
|
|
|
2021-01-19 13:51:36 +00:00
|
|
|
ReactDOM.render(
|
2021-02-10 21:28:36 +00:00
|
|
|
<Provider store={store}>
|
2021-01-19 13:51:36 +00:00
|
|
|
<App />
|
2021-02-10 21:28:36 +00:00
|
|
|
</Provider>,
|
2021-01-19 13:51:36 +00:00
|
|
|
document.getElementById('root')
|
2021-02-10 21:28:36 +00:00
|
|
|
)
|