covidpass-greenpass-su-ipho.../pages/_app.js

18 lines
358 B
JavaScript
Raw Normal View History

2021-06-25 12:18:25 +02:00
import 'tailwindcss/tailwind.css'
2021-06-26 14:22:53 +02:00
import App from 'next/app';
import { DefaultSeo } from 'next-seo';
2021-06-25 12:18:25 +02:00
2021-06-26 14:22:53 +02:00
import SEO from '../next-seo.config';
export default class MyApp extends App {
render() {
const { Component, pageProps } = this.props;
return (
<>
<DefaultSeo {...SEO} />
<Component {...pageProps} />
</>
);
}
}