FRSOURCE/cypress-plugin-visual-regression-diff

View on GitHub
examples/next/pages/_app.tsx

Summary

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

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

export default MyApp