import React, { memo } from 'react'; import { IMAGES } from '../../utils/constants'; const User = memo(function User({ color, webPlayer, name, desc, active, mines, haveBomb, enabledBomb, onClickBombSelector, }) { const buzzClass = 'bomb-container' + (active && color === webPlayer && haveBomb && enabledBomb ? ' buzz' : ''); return (