Last active
June 4, 2016 05:57
-
-
Save davidgilbertson/8500e9c821dcd3fbbdc282de26ff7f89 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 from 'react'; | |
| const {Component, PropTypes} = React; | |
| import style from './style.js'; | |
| class FeedbackModalBody extends Component { | |
| render() { | |
| return ( | |
| <textarea | |
| style={style} | |
| placeholder="What could we do better, what do you love?" | |
| /> | |
| ); | |
| } | |
| } | |
| FeedbackModalBody.propTypes = { | |
| sendFeedback: PropTypes.func.isRequired, | |
| }; | |
| export default FeedbackModalBody; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment