Add basic layout
This commit is contained in:
12
pages/_app.tsx
Normal file
12
pages/_app.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import type { AppProps } from "next/app";
|
||||
import { DefaultLayout } from "../components/layout/defaultLayout";
|
||||
|
||||
function MyApp({ Component, pageProps }: AppProps) {
|
||||
return (
|
||||
<DefaultLayout>
|
||||
<Component {...pageProps} />
|
||||
</DefaultLayout>
|
||||
);
|
||||
}
|
||||
|
||||
export default MyApp;
|
Reference in New Issue
Block a user