Skip to content

Instantly share code, notes, and snippets.

@vojtatranta
Created December 2, 2016 18:41
Show Gist options
  • Save vojtatranta/950d940ca65de01e1c3facfea2d5de74 to your computer and use it in GitHub Desktop.
Save vojtatranta/950d940ca65de01e1c3facfea2d5de74 to your computer and use it in GitHub Desktop.
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