Skip to content

Instantly share code, notes, and snippets.

@alieslamifard
Created March 24, 2020 10:21
Show Gist options
  • Save alieslamifard/c37abd39d8c2cf0d4ae7239fa0f0f1aa to your computer and use it in GitHub Desktop.
Save alieslamifard/c37abd39d8c2cf0d4ae7239fa0f0f1aa to your computer and use it in GitHub Desktop.
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