mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 21:00:06 +01:00
feat: sdk migration in progress
This commit is contained in:
18
ui/src/main.tsx
Normal file
18
ui/src/main.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
)
|
||||
Reference in New Issue
Block a user