JSFiddle - React, Tailwind, and code Playground
HTML
<div id="ComposerContainer">
<form method="POST">
<input type="text" id="messageTextBox" name="messageTextBox" placeholder="Type your message..." autocomplete="off">
<button id="sendMessageButton" name="sendMessageButton" type="submit">Send</button>
</form>
</div>
CSS
input {
width: calc(100% - 220px);
}
button {
width: 200px;
}