Added first draft of channel page

This commit is contained in:
2022-09-29 15:05:46 +02:00
parent db1bee79ac
commit 2433d0c225
29 changed files with 1851 additions and 9 deletions

16
client/src/App.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { Routes, Route } from "react-router-dom";
import BrowseLayout from "./components/BrowseLayout";
import ChannelPage from "./pages/ChannelPage";
function App() {
return (
<Routes>
<Route element={<BrowseLayout />}>
<Route path="/:channel" element={<ChannelPage />} />
<Route path="/" element={<h1>Hi</h1>} />
</Route>
</Routes>
);
}
export default App;