Skip to content

Instantly share code, notes, and snippets.

@mistadikay
Created March 10, 2016 05:28
Show Gist options
  • Save mistadikay/43dc68561b5c311f774e to your computer and use it in GitHub Desktop.
Save mistadikay/43dc68561b5c311f774e to your computer and use it in GitHub Desktop.
import React from 'react';
class Popup extends React.Component {
render() {
return (
<div className={'popup' + (this.props.visible ? ' popup_visible' : '')}>
<div className="popup__overlay"></div>
<div className="popup__content">{this.props.children}</div>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment