export const getStaticPaths = async () => { return { props: { world: 'world' }, fallback: true } } export const getServerSideProps = async () => { return { props: { world: 'world' } } } export default ({ world }) =>

Hello {world}