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( , )