File size: 222 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Component } from 'react'
class Page extends Component {
static getInitialProps({ query }) {
return { query }
}
render() {
return JSON.stringify(this.props.query, null, 2)
}
}
export default Page
|