JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li><a href="#">test</a></li>
    <li><a href="#">one</a></li>
</ul>

CSS

a:visited {
    color: red;
}

a::before {
    content: "\2022 ";
}

ul {
    list-style: none;
}