b3caeb8ce5
Agent-Logs-Url: https://github.com/zihluwang/delta-force-firearm-modification-codes/sessions/3477dccf-d002-4dda-ad39-4768da36bb9e Co-authored-by: zihluwang <47817169+zihluwang@users.noreply.github.com>
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import { StrictMode } from "react"
|
|
import { createRoot } from "react-dom/client"
|
|
import { RouterProvider } from "react-router-dom"
|
|
import "@/init"
|
|
import router from "@/router"
|
|
import "./index.css"
|
|
|
|
/**
|
|
* Main application entry point.
|
|
* Sets up the React app with React Router.
|
|
*/
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<RouterProvider router={router} />
|
|
</StrictMode>,
|
|
)
|