fix: parallell routes needs a page.tsx in root not just in catchAll route

This commit is contained in:
Simon Emanuelsson
2024-04-16 12:42:44 +02:00
parent dfcf9b4ec0
commit 21a839488a
6 changed files with 16 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import { redirect } from "next/navigation"
import { overview } from "@/constants/routes/myPages"
import type { Lang } from "@/constants/languages"
import type { LangParams, PageArgs } from "@/types/params"
export default function MyPages({ params }: PageArgs<LangParams>) {

View File

@@ -0,0 +1,3 @@
export default function Default() {
return null
}

View File

@@ -0,0 +1,3 @@
export default function Default() {
return null
}

View File

@@ -0,0 +1,3 @@
export default function Default() {
return null
}

View File

@@ -0,0 +1,3 @@
export default function Default() {
return null
}

View File

@@ -0,0 +1,3 @@
export default function Default() {
return null
}