React ignores class, so the styling never applies.
Acceptance criteria
- 1.The paragraph should have the note class.
React ignores class, so the styling never applies.
function App() { return <p>styled text</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.