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

23 lines
527 B
TypeScript

import 'tailwindcss/tailwind.css';
import {DefaultSeo} from 'next-seo';
import SEO from '../next-seo.config';
import type {AppProps} from 'next/app';
import {appWithTranslation} from 'next-i18next';
import 'string.prototype.startswith';
import { initSentry } from '../src/sentry';
initSentry();
function MyApp({Component, pageProps}: AppProps): JSX.Element {
return (
<>
<DefaultSeo {...SEO} />
<Component {...pageProps} />
</>
)
}
export default appWithTranslation(MyApp);