rsnext/test/integration/export/pages/dynamic.js

34 lines
642 B
JavaScript
Raw Normal View History

/* global location */
import React from 'react'
2017-05-09 23:03:20 +02:00
import Link from 'next/link'
export default class DynamicPage extends React.Component {
static getInitialProps ({ query }) {
return { text: query.text }
}
state = {}
componentDidMount () {
const [, hash] = location.href.split('#')
this.setState({ hash })
}
2017-05-09 23:03:20 +02:00
render () {
const { text } = this.props
const { hash } = this.state
return (
<div id='dynamic-page'>
<div>
<Link href='/'>
<a>Go Back</a>
</Link>
</div>
<p>{text}</p>
<div id='hash'>Hash: {hash}</div>
</div>
)
}
}