JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

html,body {
    margin:0;
}

.triangle {
	width: 0;
	height: 0;
	border-top: 200px solid #000;
	border-right: 200px solid transparent;
}