15 lines
300 B
JavaScript
15 lines
300 B
JavaScript
import Layout from '../components/Layout';
|
|
import CookieBanner from '../components/CookieBanner';
|
|
import '../styles/globals.css';
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<Layout>
|
|
<Component {...pageProps} />
|
|
<CookieBanner />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|