Chapter 6. Displaying Data with Props
Props로 데이터 표시하기
function Header() {
return <h1>Develop. Preview. Ship. 🚀</h1>;
}
function HomePage() {
return (
<div>
<Header />
<Header />
</div>
);
}
Props 사용하기
JSX에서 변수 사용하기
목록을 순회하는 방법
Last updated
Was this helpful?