What type of element will be rendered from the following code?function Car() { ...
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
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 />);