JSFiddle - React, Tailwind, and code Playground

HTML

<div class="prevNext">
    <a class="prev" href="#">Previous Article</a>
    <a class="next" href="#">Next Article</a>
</div>

CSS

body {
    margin: 8px;
}

.prevNext {
    text-align: justify;
    border: 1px solid #ccc;
}

.prevNext a {
    display: inline-block;
}

.prevNext:after {
    content: '';
    display: inline-block;
    width: 100%;
}