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

13 lines
222 B
JavaScript
Raw Normal View History

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