JSFiddle - React, Tailwind, and code Playground

HTML

<div id="one" class="triangle"></div>

CSS

div.triangle{
    height:0px;
    width: 0px;
    border-style: solid;
    border-color: transparent transparent black transparent;
    border-width: 50px;
}