rsnext/test/integration/optimized-loading/pages/page1.js

10 lines
145 B
JavaScript
Raw Normal View History

export default () => <h1>Hello World!</h1>
export const getServerSideProps = () => {
return {
props: {
hello: 'world',
},
}
}