JSFiddle - React, Tailwind, and code Playground

by Softlink

HTML

<ul>
    <li>пункт 1</li>
    <li>пункт 2</li>
    <li>пункт 3</li>
</ul>

CSS

li{
    float:left
    }
li:before{
    content:'→ ';
    }
li:first-child:before{
    content:'';
    }