ljosberinn/eslint-config-galex

View on GitHub
integration/next-ts/pages/_app.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import '../styles/globals.css';
import type { AppProps } from 'next/app';

function MyApp({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}
export default MyApp;