A function cannot return two values; the siblings need a parent.
Acceptance criteria
- 1.#root should show both Title and Body.
A function cannot return two values; the siblings need a parent.
function App() { return <h3>Title</h3> } 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.