import styles from '../styles/index.module.css' import dynamic from 'next/dynamic' const Hello = dynamic(() => import('../components/hello')) export default function Home() { return (

Hello World

) } export const getServerSideProps = () => { return { props: { hello: 'world', }, } }