mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
feat: add Vite + React SPA with Tailwind CSS and routing
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { BrowserRouter, Routes, Route } from "react-router-dom";
|
||||
|
||||
export function App() {
|
||||
return (
|
||||
<BrowserRouter>
|
||||
<Routes>
|
||||
<Route path="/" element={<div className="p-8 text-2xl font-bold text-primary">Stirling Image</div>} />
|
||||
</Routes>
|
||||
</BrowserRouter>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user