A component is a reusable and independent UI block.
There are 2 types:
Function Components (Modern)
Class Components (Legacy)
// Function Component
function Welcome(props) {
return <h1>Hello, {props.name}</h1>;
}
Component Comparison (Function vs Class)
Criteria | Function Component | Class Component |
---|---|---|
Concise & easier to write | ✅ | ❌ |
Supports Hooks | ✅ | ❌ |
Easier to test | ✅ | ❌ |
Lifecycle methods | Via useEffect() | Built-in in class |
Recommended in modern React | ✅ | ❌ |
Để lại một bình luận