rsnext/examples/image-legacy-component/pages/_app.tsx
Steven e2f16f96c2
Update next/image docs and examples (#41434)
This PR updates the docs for the following code change:

- #41399

There are a few updates here:

- [x] Update docs
- [x] Update links to docs inside component
- [x] Update examples
- [x] Fix corner cases in codemod
2022-10-17 10:41:35 -04:00

6 lines
170 B
TypeScript

import type { AppProps } from 'next/app'
import '../app.css'
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}