JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<div class="header">
    <h2>Some Text</h2>
    <div class="button-group">
        <button>Ok</button>
        <button>Cancel</button>
    </div>
</div>

CSS

.header h2 {
    display: inline;
}

.header .button-group {
    display: inline;
}