Created
March 29, 2018 16:05
-
-
Save javierfernandes/14b5efa2d7e17770525914a2215e1d77 to your computer and use it in GitHub Desktop.
Redux - truco - ManoConTruco (componente)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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