fix(bug): fix router
This commit is contained in:
@@ -2,16 +2,16 @@ import AppLayout from "@/components/layout/AppLayout"
|
||||
import { PathnameRecorder } from "@/components/layout/PathnameRecorder"
|
||||
import { componentList, showList } from "@/components/layout/common"
|
||||
|
||||
async function getMenu() {
|
||||
return [...componentList, ...showList]
|
||||
}
|
||||
// async function getMenu() {
|
||||
// return [...componentList, ...showList]
|
||||
// }
|
||||
|
||||
export default async function Layout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode
|
||||
}) {
|
||||
const menu = await getMenu()
|
||||
const menu = [...componentList, ...showList]
|
||||
return (
|
||||
<AppLayout menu={menu}>
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user