mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
|
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
|