react-code-dataset
/
next.js
/test
/development
/pages-dir
/client-navigation
/fixture
/pages
/nav
/as-path.js
| 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> | |
| } | |
| } | |