rsnext/test/integration/basepath/pages/ssr.js

12 lines
151 B
JavaScript
Raw Normal View History

function SSRPage({ test }) {
return <h1>{test}</h1>
}
SSRPage.getInitialProps = () => {
return {
test: 'hello',
}
}
export default SSRPage