JSFiddle - React, Tailwind, and code Playground
HTML
<FormattedDate date={this.state.date} />
React
function FormattedDate(props) {
return <h2>Сейчас {props.date.toLocaleTimeString()}.</h2>;
}
<FormattedDate date={this.state.date} />
function FormattedDate(props) {
return <h2>Сейчас {props.date.toLocaleTimeString()}.</h2>;
}