From 2331a7988402525112214402bde79c100c0b2ac0 Mon Sep 17 00:00:00 2001 From: mpuchstein Date: Wed, 2 Jul 2025 17:09:59 +0200 Subject: [PATCH] try to get it working --- src/App.tsx | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index bf4477c..a70272c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,6 +1,26 @@ import './App.css' import Navbar from "./components/Navbar.tsx"; -import {BrowserRouter} from "react-router-dom"; +import {BrowserRouter, Route, Routes} from "react-router-dom"; + +function Home() { + return null; +} + +function Feed() { + return null; +} + +function Record() { + return null; +} + +function Archive() { + return null; +} + +function Profile() { + return null; +} function App() { @@ -9,6 +29,13 @@ function App() {
+ + } /> + } /> + } /> + } /> + } /> + ) }