rsnext/test/integration/gssp-pageProps-merge/pages/gsp.js
2020-05-18 15:24:37 -04:00

2 lines
119 B
JavaScript

export const getStaticProps = () => ({ props: { hi: 'hi' } })
export default (props) => <p>{JSON.stringify(props)}</p>