24 lines
444 B
JavaScript
24 lines
444 B
JavaScript
import React from 'react'
|
|
import {Settings} from 'luxon'
|
|
import ReactDOM from 'react-dom'
|
|
import 'fomantic-ui-less/semantic.less'
|
|
|
|
import './index.css'
|
|
import App from './App'
|
|
|
|
import 'maplibre-gl/dist/maplibre-gl.css'
|
|
|
|
import {Provider} from 'react-redux'
|
|
|
|
import store from './store'
|
|
|
|
// TODO: remove
|
|
Settings.defaultLocale = 'de-DE'
|
|
|
|
ReactDOM.render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>,
|
|
document.getElementById('root')
|
|
)
|