(Choose 1 answer)
What type of element will be rendered from the following code?
function Car() { return <h1>Ford Mustang</h1>;}
const root = createRoot(document.getElementById('root'));root.render(<Car/>);
A. div
B. h1
C. ReactDom
D. Component
Exit 14