import Link from 'next/link' export async function getStaticProps() { return { props: { world: 'nested index' }, } } export default ({ world }) => { return ( <>
hello {world}