Skip to content

Instantly share code, notes, and snippets.

@vlpt-playground
Created April 7, 2017 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlpt-playground/953dc05ed0f097f84aaa646ec43c55c4 to your computer and use it in GitHub Desktop.
Save vlpt-playground/953dc05ed0f097f84aaa646ec43c55c4 to your computer and use it in GitHub Desktop.
import Link from 'next/link'
const Index = () => (
<div>
<h1>
안녕, Next.js
</h1>
<h2>
<Link href="/about">
<a>소개</a>
</Link>
</h2>
</div>
);
export default Index;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment