next.js/test/production/export/pages/query.js
query.js13 lines222 B
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
Quest for Codev2.0.0
/
SIGN IN