Skip to content

Commit 91aa987

Browse files
add route for dyanamic programming
1 parent 1e056bf commit 91aa987

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/App.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
44
import SortingPage from "./pages/sorting/SortingPage";
55
import GraphPage from "./pages/graph/GraphPage";
66
import Homepage from "./pages/Homepage.jsx";
7+
import DynamicProgrammingPage from "./pages/dynamic-programming/DyanmicProgrammingPage.jsx";
78

89
function App() {
910
return (
@@ -13,6 +14,7 @@ function App() {
1314
{/* <Route path="/graph/union-find" element={<UnionFindPage />} /> */}
1415
<Route path="/sorting" element={<SortingPage />} />
1516
<Route path="/graph" element={<GraphPage />} />
17+
<Route path="/dynamic-programming" element={<DynamicProgrammingPage />} />
1618
</Routes>
1719
</Router>
1820
);

0 commit comments

Comments
 (0)