Using npm:
$ npm install copy-component -SUsing yarn:
$ yarn add copy-component(Sandbox link)[https://codesandbox.io/s/busy-hoover-miqdw?file=/src/Rating.jsx]
<Copy amount={5}>
{idx => (
<input
type="checkbox"
checked={isHighlighted(idx)}
onMouseOver={() => setRating(idx + 1)}
onMouseLeave={() => setRating(value)}
onClick={() => set(idx + 1)}
/>
)}
</Copy>