Skip to content

Commit

Permalink
chore :: manage page route
Browse files Browse the repository at this point in the history
  • Loading branch information
dutexion committed Apr 16, 2024
1 parent 7c153b8 commit 53c9c95
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/router/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Main } from '../pages/Main';
import { Team } from '@/pages/Team';
import { TeamCreate } from '@/pages/Team/Create';
import { Error } from '@/pages/Error';
import { TeamManage } from '@/pages/Team/Manage';

export const Router = createBrowserRouter([
{
Expand All @@ -16,6 +17,7 @@ export const Router = createBrowserRouter([
children: [
{ index: true, element: <Team /> },
{ path: 'create', element: <TeamCreate /> },
{ path: 'manage', element: <TeamManage /> },
],
},
{
Expand Down

0 comments on commit 53c9c95

Please sign in to comment.