JSFiddle - React, Tailwind, and code Playground
HTML
<div id="dice1" class="dice"></div><div id="dice2" class="dice"></div>
CSS
.dice {margin:10px;background:#444;color:#fff;width:200px;height:200px;border-radius:10px;line-height:200px;font-size:100px;text-align:center}
JavaScript
$('dice1').set('text', Math.round(Math.random()*5+1));
$('dice2').set('text', Math.round(Math.random()*5+1));