rsnext/test/integration/production-config/pages/_app.js
JJ Kasper bf11421992 Add deprecation warning for App Container (#8475)
* Add deprecation warning for App Container

* Apply suggestions from code review

Co-Authored-By: Joe Haddad <joe.haddad@zeit.co>

* Tweak for more dead-code elimination
2019-08-22 16:19:15 -04:00

11 lines
227 B
JavaScript

import App from 'next/app'
import React from 'react'
import '../styles.css'
export default class MyApp extends App {
render () {
const { Component, pageProps } = this.props
return <Component {...pageProps} />
}
}