Created
December 2, 2016 18:41
-
-
Save vojtatranta/950d940ca65de01e1c3facfea2d5de74 to your computer and use it in GitHub Desktop.
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
const style = Stylesheet.create({ | |
visible: { | |
display: block, | |
color: 'red', | |
}, | |
invisible: { | |
display: none, | |
}, | |
}) | |
export default ({visilble}) => { | |
return (<div styles={visible ? style.visible : style.invisible}>This is text</div>) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment