-
-
Save anonymous/b99f52036a291f23bc7f38d9b4a6cfe1 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> | |
</div> | |
); | |
}; | |
export default Header; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment