Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created December 6, 2018 13:27
Show Gist options
  • Save amandeepmittal/7f9b8dd2a023db2be182111d1468f8d8 to your computer and use it in GitHub Desktop.
Save amandeepmittal/7f9b8dd2a023db2be182111d1468f8d8 to your computer and use it in GitHub Desktop.
// second.js
import Link from 'next/link';
export default () => (
<div>
<h1>Second Page </h1>
<Link href="/index">
<a>Home Page</a>
</Link>
</div>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment