JSFiddle - React, Tailwind, and code Playground

HTML

<ul class="wrapper">
    <li>test1</li>
    <li>test2</li>       
    <li>test3</li>
    <li>test4</li>
    <div class="clear"></div>
</ul>
dasda

CSS

.wrapper {
    list-style-type: none;
}

.wrapper li {
    float:left;
}

.clear {
    clear: both;
}