mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
bf882eb60c
Failing test for #4620
17 lines
378 B
JavaScript
17 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>
|
|
}
|
|
}
|