JSFiddle - React, Tailwind, and code Playground

by brycenesbitt

HTML

<div id="show-hide-facets-button"><a href="#" onclick = "void(0)">iOS Menu Test</a>
    <div id="show-hide-facets-dropdown">
    <li class="show-hide-facets-row" id="item1">Item One</li>
    <li class="show-hide-facets-row" id="item2">Item Two</li>
    </div>
</div>

CSS

#show-hide-facets-button {
}
#show-hide-facets-dropdown {
    display: none;
}
#show-hide-facets-button:hover #show-hide-facets-dropdown {
    display: block;
}