Skip to content

Instantly share code, notes, and snippets.

@mistadikay
Last active March 10, 2016 05:39
Show Gist options
  • Save mistadikay/8abc9aa86f2dea621288 to your computer and use it in GitHub Desktop.
Save mistadikay/8abc9aa86f2dea621288 to your computer and use it in GitHub Desktop.
import Yummies from '@yummies/yummies';
class Popup extends Yummies.Component {
render() {
return {
block: 'popup',
mods: {
visible: this.props.visible
},
content: [
{
elem: 'overlay'
},
{
elem: 'content',
content: this.props.children
}
]
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment