JSFiddle - React, Tailwind, and code Playground

by makzan

JavaScript

function ScoreItem(props) {
  return <div>
    {props.name}
    <span>{props.score}</span>
  </div>
}