Skip to content

Commit

Permalink
fix(admin): add organisation route
Browse files Browse the repository at this point in the history
  • Loading branch information
Rei-x committed Feb 13, 2023
1 parent 06c54fc commit 3af4782
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions nextjs-routes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ declare module "nextjs-routes" {
| StaticRoute<"/404">
| StaticRoute<"/admin">
| DynamicRoute<"/admin/organizacje/[slug]", { "slug": string }>
| StaticRoute<"/admin/organizacje">
| DynamicRoute<"/api/auth/[...nextauth]", { "nextauth": string[] }>
| DynamicRoute<"/api/trpc/[trpc]", { "trpc": string }>
| StaticRoute<"/">
Expand Down
3 changes: 3 additions & 0 deletions src/pages/admin/organizacje/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { HomePage } from "@/features/admin";

export default HomePage;

0 comments on commit 3af4782

Please sign in to comment.