basic setup

react
ts
tailwind
vite
biome
bun
This commit is contained in:
Oliver Bryan
2026-01-07 12:22:30 +00:00
parent c0700e1373
commit 019b8545f1
13 changed files with 707 additions and 0 deletions

14
src/App.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { BrowserRouter, Route, Routes } from "react-router-dom";
import Index from "@/Index";
function App() {
return (
<BrowserRouter>
<Routes>
<Route path="/" element={<Index />} />
</Routes>
</BrowserRouter>
);
}
export default App;