JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
  <li>Line1</li>
  <li>Line2</li>
</ul>

CSS

ul{
  list-style-type: none;
}

li:before{
  content: "*";
}