rsnext/examples/with-polyfills/pages/_app.js

9 lines
215 B
JavaScript

// Add your polyfills here or at the component level.
// For example...
// import 'resize-observer-polyfill'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp