Knowledge check: JSX - Advanced React
Let’s suppose you have the below JSX that gets returned from a component, what would be the equivalent object representation (Element) that React will create internally?
<button className='button-primary'>
<div>
Submit
</div>
<...