🎯 What you'll practice: JSX syntax rules — className, self-closing tags, curly braces, and the key prop.
1-B 2-B 3-C 4-B | 5 = curly 6 = key 7 = {isAdmin && <span>Admin</span>} 8 = {age >= 18 ? <Adult/> : <Minor/>} 9 = Because JSX compiles to a single React.createElement() call tree — a function can only return one value, so multiple sibling elements must be wrapped in one parent or Fragment | 10 = {skills.map((s,i) => <span key={i} style={{color: i%2?"blue":"red"}}>{s}</span>)}