Skip to content

Instantly share code, notes, and snippets.

@abedzantout
Created September 21, 2019 10:29
Show Gist options
  • Save abedzantout/cc4cefe561ec764b9778dc9c3630bacc to your computer and use it in GitHub Desktop.
Save abedzantout/cc4cefe561ec764b9778dc9c3630bacc to your computer and use it in GitHub Desktop.
initial index.tsx
import React from 'react';
import { NextPage } from 'next';
type Props = {}
const IndexPage: NextPage = (props: Props) => {
return (<div>Hello World!</div>)
};
IndexPage.getInitialProps = async ({query}) => {
return {};
};
export default IndexPage;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment