JSFiddle - React, Tailwind, and code Playground

HTML

<a href="#list">Список</a>

<ul id="list">
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>

CSS

#list:target {
    display: block;
}

#list {
    display: none;
}