divs hide heading and button roles from assistive tech.// ❌ Non-semantic
<>
<div className="title">
Contact Us
</div>
<div
onClick={() => sendForm()}
>
Send
</div>
</> h1 and button expose structure and interaction.// ✅ Semantic
<>
<h1>Contact Us</h1>
<button
type="button"
onClick={() => sendForm()}
>
Send
</button>
</>