JSFiddle - React, Tailwind, and code Playground
HTML
<div class="itens">
<article></article>
<article></article>
<article></article>
</div>
CSS
.itens{
width:100%;
text-align:center;
}
.itens article{
display:inline-block;
margin:5px;
background:blue;
width:100px;
height:200px;
}