rsnext/test/integration/basic/pages/nav/as-path.js

16 lines
266 B
JavaScript
Raw Normal View History

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>
)
}
}