🚩 해당 글은 유튜브 The Net Ninja와 React 공식문서를
공부한 토대로 작성된 글입니다. 혹시라도 잘못된 글이 있다면
댓글로 알려주세요 🏃♀️🏃♀️
class
키워드 대신 className
키워드를 사용한다.const Navbar = () => {
const newBlogStyle = { color: 'blue', backgroundColor: 'red'}
return (
<nav className="navbar">
<h1>Kim's Blog</h1>
<div className="links">
// Inline-style 1 : style 태그 내에 그대로 style object를 삽입
<a href="/" style={{
color: 'blue',
borderRadius: '4px';
}}>HOME</a>
// Inline-style 2 : variable 사용
<a href="/create" style={newBlogStyle} >NEW BLOG</a>
</div>
</nav>
);
}
export default Navbar;