Created
September 21, 2019 10:29
-
-
Save abedzantout/cc4cefe561ec764b9778dc9c3630bacc to your computer and use it in GitHub Desktop.
Revisions
-
abedzantout revised this gist
Sep 21, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type Props = {} const IndexPage: NextPage = (props: Props) => { return (<div>Hello World!</div>) }; IndexPage.getInitialProps = async ({query}) => { -
abedzantout created this gist
Sep 21, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ 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;