export const unstable_getStaticProps = async () => { return { props: { world: 'world' }, } } export const unstable_getServerProps = async () => { return { props: { world: 'world' }, } } export default ({ world }) =>

Hello {world}