mocksaml/pages/_app.tsx

14 lines
268 B
TypeScript
Raw Normal View History

2022-02-18 08:56:42 +00:00
import "styles/globals.css";
import type { AppProps } from "next/app";
import Layout from "components/Layout";
2022-01-08 15:11:13 +00:00
function MyApp({ Component, pageProps }: AppProps) {
2022-02-17 06:05:50 +00:00
return (
2022-02-18 08:56:42 +00:00
<Layout>
<Component {...pageProps} />
</Layout>
);
2022-01-08 15:11:13 +00:00
}
2022-02-18 08:56:42 +00:00
export default MyApp;