diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-09 21:31:52 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-09 21:31:52 +0100 |
| commit | 161516ffad6999dc24db7e5ed8e1ebd815ff1ec1 (patch) | |
| tree | ac1318859f40ee8daed0c3a97a8b78100b829d9a /src/App.tsx | |
| parent | 1623358daf03c03b1142a696cd2c9b5d27129b25 (diff) | |
Add embed pages
Diffstat (limited to 'src/App.tsx')
| -rw-r--r-- | src/App.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/App.tsx b/src/App.tsx index 64c411c..da689fd 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,6 +1,8 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router' import HomePage from './pages/HomePage' import ChartPage from './pages/chart/ChartPage' +import EmbedPage from './pages/embed/EmbedPage' +import ChartEmbedPage from './pages/chart/ChartEmbedPage' import './styles.css' function App() { @@ -9,6 +11,8 @@ function App() { <Routes> <Route path="/" element={<HomePage />} /> <Route path="/chart" element={<ChartPage />} /> + <Route path="/embed" element={<EmbedPage />} /> + <Route path="/chart/embed" element={<ChartEmbedPage />} /> </Routes> </Router> ) |
