import React from 'react' export default class extends React.Component { static getInitialProps ({ asPath, req }) { return { asPath } } render () { return (
{this.props.asPath}
) } }