next.js/test/development/pages-dir/client-navigation/fixture/pages/nav/as-path.js
as-path.js12 lines234 B
import React from 'react'

export default class extends React.Component {
  static getInitialProps({ asPath, req }) {
    return { asPath }
  }

  render() {
    return <div className="as-path-content">{this.props.asPath}</div>
  }
}
Quest for Codev2.0.0
/
SIGN IN