Skip to content

Instantly share code, notes, and snippets.

@chiefGui
Created February 22, 2017 12:46
Show Gist options
  • Save chiefGui/2a98785ecb8d697dc81d03d80ad0d212 to your computer and use it in GitHub Desktop.
Save chiefGui/2a98785ecb8d697dc81d03d80ad0d212 to your computer and use it in GitHub Desktop.
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