JSFiddle - React, Tailwind, and code Playground

by James Pls

HTML

<ul>
    <li>hello</li>
    <li>there</li>
    <li>friendo</li>
    <li>:)</li>
</ul>

CSS

ul {
    display: flex;
    list-style-type: none;
}
li {
    background: #eee;
}