initialized with `create-vite@latest --template react-ts`, replaced eslint with biome, added tailwindcss & react-router
16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
import { StrictMode } from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import { BrowserRouter, Route, Routes } from "react-router";
|
|
import "./index.css";
|
|
import App from "./App.tsx";
|
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
<StrictMode>
|
|
<BrowserRouter>
|
|
<Routes>
|
|
<Route index element={<App />} />
|
|
</Routes>
|
|
</BrowserRouter>
|
|
</StrictMode>
|
|
);
|