mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
625288796f
* Rename static to export in integration tests * Move export functionality into it’s own directory * Fix path
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
|