import React from 'react'; export default class extends React.Component { static async getInitialProps({ pathname, query, asPath }) { return { pathname, query, asPath }; } render() { return ( <ul> <li>pathname: {this.props.pathname}</li> <li>query: {JSON.stringify(this.props.query)}</li> <li>asPath: {this.props.asPath}</li> </ul> ); } }

