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