-
-
Save vlpt-playground/c0a96877e9a0581d3d758ad09793b940 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 Link from 'next/link'; | |
const linkStyle = { | |
marginRight: '1rem' | |
} | |
const Header = () => { | |
return ( | |
<div> | |
<Link href="/"><a style={linkStyle}>홈</a></Link> | |
<Link href="/about"><a style={linkStyle}>소개</a></Link> | |
<Link prefetch href="/ssr-test"><a style={linkStyle}>SSR 테스트</a></Link> | |
</div> | |
); | |
}; | |
export default Header; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment