JSFiddle - React, Tailwind, and code Playground

by makzan

JavaScript

const ScoreItem = ({ name, score }) => (
  <div>
    {name}
    <span>{score}</span>
  </div>
)