Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import React, {Component, PropTypes} from 'react'
  2.  
  3. const Modal = ({onClose}) => (
  4. <div id="modal">
  5. <form>
  6. <input type="text" placeholder="Your e-mail" />
  7.  
  8. <textarea placeholder="What are your thoughts?" />
  9.  
  10. <button onClick={onClose}>Close</button>
  11. <button>Send</button>
  12. </form>
  13. </div>
  14. )
  15.  
  16. Modal.propTypes = {
  17. onClose: PropTypes.func
  18. }
  19.  
  20. export default Modal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement