rsnext/test/integration/app-aspath/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

16 lines
348 B
JavaScript

import React from 'react'
import App from 'next/app'
export default class MyApp extends App {
// find this
static async getInitialProps ({ ctx }) {
const { query, pathname, asPath } = ctx
return { url: { query, pathname, asPath } }
}
render () {
const { Component, url } = this.props
return <Component url={url} />
}
}