JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li>Меню</li>
    <li>Еще</li>
    <li>Очень</li>
    <li>Не очень меню</li>
</ul>

CSS

ul{margin:10px;}
li{
    float:left;
    text-align:center;
    margin-right:5px;
    padding:5px;
    border:solid 1px silver;
}
li:hover{font-weight:bold;cursor:pointer;}