Render a list
Practice JSX mapping and stable keys in a small component.
function App() {
const tools = ["Python", "SQL", "React"];
return <ul>{tools.map((tool) => <li key={tool}>{tool}</li>)}</ul>;
}Expected: The preview renders a three-item list.
Try in editor