JSFiddle - React, Tailwind, and code Playground

by Сергей Тарасевич

HTML

<FormattedDate date={this.state.date} />

React

function FormattedDate(props) {
  return <h2>Сейчас {props.date.toLocaleTimeString()}.</h2>;
}