JSFiddle - React, Tailwind, and code Playground

HTML

<div id="div1">
    <p>Elemento 1</p>
</div>
<div id="div2">
    <p>Elemento 2</p>
</div>

CSS

#div1:hover ~ #div2 {
    background-color: black;
}