import React from 'react' import { useSelector } from 'react-redux'; const CoinOnTable = () => { const styleState = useSelector(state => state.style); return ( <> {styleState.roulette.coinPlaced.x !== 0 && Gold coin} ) } export default CoinOnTable