import {NextPage} from 'next'; type Props = {} const IndexPage: NextPage = () => { return (
Hello
); }; export default IndexPage;