import React, { memo } from 'react'; const SRC = '/images/'; const User = memo(function User({ color, webPlayer, name, desc, active, mines, haveBomb, enabledBomb, onClickBombSelector, }) { const buzzClass = 'bomb-container' + (active && color === webPlayer && haveBomb && enabledBomb ? ' buzz' : ''); const bombImg = haveBomb ? SRC + (enabledBomb && active ? 'bg-bomb-outbg.png' : 'bg-bomb-disabled-outbg.png') : SRC + 'bg-bomb-exploded-outbg.png'; return (
}