Created
February 22, 2017 12:46
-
-
Save chiefGui/2a98785ecb8d697dc81d03d80ad0d212 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
| import React, {Component, PropTypes} from 'react' | |
| const Modal = ({onClose}) => ( | |
| <div id="modal"> | |
| <form> | |
| <input type="text" placeholder="Your e-mail" /> | |
| <textarea placeholder="What are your thoughts?" /> | |
| <button onClick={onClose}>Close</button> | |
| <button>Send</button> | |
| </form> | |
| </div> | |
| ) | |
| Modal.propTypes = { | |
| onClose: PropTypes.func | |
| } | |
| export default Modal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment