2022-08-13 10:56:07 +02:00
|
|
|
import "@fontsource/open-sans"
|
|
|
|
|
import { store } from "app/store"
|
|
|
|
|
import dayjs from "dayjs"
|
|
|
|
|
import relativeTime from "dayjs/plugin/relativeTime"
|
2023-02-24 12:36:22 +01:00
|
|
|
import "react-contexify/ReactContexify.css"
|
2022-08-13 10:56:07 +02:00
|
|
|
import ReactDOM from "react-dom/client"
|
|
|
|
|
import { Provider } from "react-redux"
|
|
|
|
|
import { App } from "./App"
|
|
|
|
|
|
|
|
|
|
dayjs.extend(relativeTime)
|
|
|
|
|
|
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
2022-08-22 13:43:14 +02:00
|
|
|
<Provider store={store}>
|
|
|
|
|
<App />
|
|
|
|
|
</Provider>
|
2022-08-13 10:56:07 +02:00
|
|
|
)
|