JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <span>left align some text</span>
  <span>right align some other text</span>
</div>

CSS

div {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
}

span:last-child {
  margin-left: auto;
}