first commit

This commit is contained in:
M1ngdaXie
2025-12-29 16:29:24 -08:00
commit 37d89b13b9
48 changed files with 7334 additions and 0 deletions

18
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { BrowserRouter, Route, Routes } from "react-router-dom";
import EditorPage from "./pages/EditorPage.tsx";
import Home from "./pages/Home.tsx";
import KanbanPage from "./pages/KanbanPage.tsx";
function App() {
return (
<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/editor/:id" element={<EditorPage />} />
<Route path="/kanban/:id" element={<KanbanPage />} />
</Routes>
</BrowserRouter>
);
}
export default App;