Components, Props and composition
A component is an independent, reusable piece of UI. Learn how data flows down through Props and actions flow up through event handlers.
CourseCard.tsx
function CourseCard({ title, onStart }) {
return (
<article>
<h2>{title}</h2>
<button onClick={onStart}>开始</button>
</article>
)
}VIDEO · 08:24组件为什么可以复用?