diff options
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> ) |
