JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<style>
label, input[type=text], button {
float: left;
}
</style>
</head>
<body>
<label for="input">LABEL 1</label>
<input id="input" type="text" />
<button type="button">BUTTON</button>
<br />
<label for="anotherInput">LABEL 2</label>
</body>
</html>