next.js/test/integration/app-aspath/pages/_app.js
_app.js17 lines346 B
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} />
  }
}
Quest for Codev2.0.0
/
SIGN IN