Create a simple welcome component that greets a user by name and allows toggling additional information.
toggle-info that shows/hides additional informationuseState hook to manage the toggle stategreetinginfoname prop passed to your component<div className="welcome-card">
<h1 id="greeting">Welcome, {name}!</h1>
<button id="toggle-info" onClick={toggleInfo}>
{showInfo ? 'Hide Details' : 'Show Details'}
</button>
{showInfo && (
<p id="info">
We're excited to have you join us! This platform helps you learn
React by building real components in a hands-on environment.
</p>
)}
</div>