P4.2: Functional React Components

Components are independent, reusable pieces of user interface.


1. Functional Component Syntax

function Header() {
  return (
    <header>
      <h1>Nextsem Academy</h1>
    </header>
  );
}

🎓 Practice Assignment Tasks

  • Create a component named `UserProfileCard`.
  • Nest it inside your main App component and render it.
Stuck? Hints available
<!-- Write your HTML structure here to complete the assignment -->
🔒 Code requirements not met yet. Complete the tasks above.
🔒 Complete the Practice Assignment above to unlock completion.
Advertisement
NS
Ask Nextsem
AI Mode
NS
Home
Course
Playground