Skip to content

Instantly share code, notes, and snippets.

@javierfernandes
Created March 29, 2018 16:05
Show Gist options
  • Select an option

  • Save javierfernandes/14b5efa2d7e17770525914a2215e1d77 to your computer and use it in GitHub Desktop.

Select an option

Save javierfernandes/14b5efa2d7e17770525914a2215e1d77 to your computer and use it in GitHub Desktop.
Redux - truco - ManoConTruco (componente)
import React from 'react'
import './ManoConTurno.css'
const ManoConTurno = ({ actual, children }) => (
<div className="manoConTurno">
<div className={`turnoActual ${actual && "habilitado"}`} />
{children}
</div>
)
export default ManoConTurno
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment