rsnext/examples/image-component/pages/_app.js
Steven 35f8f521a2
Update Image docs with links to examples (#18770)
This revises the docs to add headings and also links to layout examples.

Fixes #18554
2020-11-04 17:24:14 +00:00

5 lines
119 B
JavaScript

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