15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
import MainLayout from "@/components/Layout/MainLayout";
|
|
import { buildNestedMenu } from "@/lib/menu";
|
|
import "@/styles/globals.css";
|
|
import type { AppProps } from "next/app";
|
|
|
|
|
|
|
|
export default function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<MainLayout>
|
|
<Component {...pageProps} />
|
|
</MainLayout>
|
|
)
|
|
}
|