From 161516ffad6999dc24db7e5ed8e1ebd815ff1ec1 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sun, 9 Mar 2025 21:31:52 +0100 Subject: Add embed pages --- src/App.tsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/App.tsx') 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() { } /> } /> + } /> + } /> ) -- cgit v1.3.1