import React from 'react'; import { NextPage } from 'next'; type Props = {} const IndexPage: NextPage = (props: Props) => { return (
Hello World!
) }; IndexPage.getInitialProps = async ({query}) => { return {}; }; export default IndexPage;