Created
March 24, 2020 10:21
-
-
Save alieslamifard/c37abd39d8c2cf0d4ae7239fa0f0f1aa to your computer and use it in GitHub Desktop.
This file contains 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 characters
import React from 'react'; | |
import Link from 'next/link'; | |
export default function HomePage() { | |
return ( | |
<div> | |
<h2>Hello World!</h2> | |
<Link href="/dashboard">Go to Dashboard</Link> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment