Created
September 14, 2017 00:25
-
-
Save tristen/3bb83da8c7c523b03abc6d627153f2ad to your computer and use it in GitHub Desktop.
This file contains 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 Modal from 'some-react-modal' | |
export class CoolModal extends React.Component { | |
render() { | |
const { title, size, onExit, children } = this.props; | |
const width = size === 'small' ? '360px' : '600px'; | |
<Modal | |
onExit={onExit} | |
enableKeys={true} | |
closeOnOutsideClick={true}> | |
<div style={{width}}> | |
<h1>{title}</h1> | |
{children} | |
</div> | |
</Modal> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment