mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 04:40:05 +01:00
19 lines
402 B
TypeScript
19 lines
402 B
TypeScript
import "./index.css"
|
|
|
|
import { StrictMode } from "react"
|
|
import { Providers } from "@/providers"
|
|
import { createRoot } from "react-dom/client"
|
|
import { BrowserRouter } from "react-router-dom"
|
|
|
|
import App from "./App.tsx"
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<BrowserRouter>
|
|
<Providers>
|
|
<App />
|
|
</Providers>
|
|
</BrowserRouter>
|
|
</StrictMode>
|
|
)
|