SkillSeevaSkillSeeva
HomeResourcesScheduleRoadmapTeam
Back to Categories
Current Path
React
ComponentsHooks (useState, useEffect)Props & State
Jump to topic:
ComponentsHooks (useState, useEffect)Props & State

Components

Components are the building blocks of any React application. They let you split the UI into independent, reusable pieces.
javascript
function Welcome(props) {
  return <h1>Hello, {props.name}</h1>;
}
1 / 3