blob: 2896467a589a78d07618b2f357a574e0d16f9413 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import Layout from "../components/Layout";
import "../styles/global.css";
export default function MyApp({ Component, pageProps }) {
return (
<Layout>
<Component {...pageProps} />
</Layout>
);
}
|