diff --git a/src/app/App.tsx b/src/app/App.tsx index f645b12..9eb1358 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1,6 +1,9 @@ import { Routes, Route } from 'react-router-dom' import HomePage from '../pages/HomePage' import BlogPage from '../pages/BlogPage' +import ApplicationsPage from '../pages/ApplicatiosPage' +import BudgetPage from '../pages/BudgetPage' +import TeamPage from '../pages/TeamPage' function App (): JSX.Element { return ( @@ -8,6 +11,9 @@ function App (): JSX.Element { } /> } /> + } /> + } /> + } /> ) diff --git a/src/pages/TeamPage.tsx b/src/pages/TeamPage.tsx index 2513890..27faae2 100644 --- a/src/pages/TeamPage.tsx +++ b/src/pages/TeamPage.tsx @@ -1,7 +1,10 @@ +import { useParams } from 'react-router-dom' + function TeamPage (): JSX.Element { + const { teamName } = useParams() return (
-

Team

+

Team {teamName}

) }