Loading...
Loading...
Loading...
Loading...
Build recall with focused questions across the frontend stack.
Separate React itself from the tools a complete application may add.
Identify which concerns React handles directly.
There are three correct answers.
// Choose the valid JSX lineIn JSX, class is not the attribute name.
const user = { name: "Ada", imageUrl: "/ada.png" };There are two correct answers.
function Button() { return <button>Save</button>; }
export default function Toolbar() {
return <section><h1>Editor</h1><Button /></section>;
}Capitalized JSX tags refer to React components.