JSFiddle - React, Tailwind, and code Playground

HTML

<div class="flex-container">
    <div class="item">
    </div>
</div>

CSS

.flex-container {
	display: flex;
	align-items: center;
    justify-content: center;
}

.item {
    background-color: blue;
    height: 50px; 
    width: 50px;
}