Without braces the variable name is printed as literal text.
Acceptance criteria
- 1.#root should show user is Ada.
Without braces the variable name is printed as literal text.
function App() { const person = "Ada" return <p>user is person</p> } const root = ReactDOM.createRoot(document.getElementById("root")) root.render(<App />)
Output ready when you are
Press Run to render your code, or Submit to validate your solution.