rsnext/test/integration/app-aspath/pages/_app.js
Alexander bf882eb60c Failing test for #4620 (#4625)
Failing test for #4620
2018-06-18 23:22:40 +02:00

16 lines
378 B
JavaScript

import React from 'react'
import App, {Container} 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 <Container><Component url={url} /></Container>
}
}