mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
24 lines
680 B
TypeScript
24 lines
680 B
TypeScript
import "@fontsource/open-sans"
|
|
import "@mantine/core/styles.css"
|
|
import "@mantine/notifications/styles.css"
|
|
import "@mantine/spotlight/styles.css"
|
|
import "react-contexify/ReactContexify.css"
|
|
import dayjs from "dayjs"
|
|
import duration from "dayjs/plugin/duration"
|
|
import relativeTime from "dayjs/plugin/relativeTime"
|
|
import ReactDOM from "react-dom/client"
|
|
import { Provider } from "react-redux"
|
|
import { App } from "@/App"
|
|
import { store } from "@/app/store"
|
|
|
|
dayjs.extend(relativeTime)
|
|
dayjs.extend(duration)
|
|
|
|
const root = document.getElementById("root")
|
|
root &&
|
|
ReactDOM.createRoot(root).render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>
|
|
)
|