Skip to content

Instantly share code, notes, and snippets.

@davidgilbertson
Last active June 4, 2016 05:57
Show Gist options
  • Save davidgilbertson/8500e9c821dcd3fbbdc282de26ff7f89 to your computer and use it in GitHub Desktop.
Save davidgilbertson/8500e9c821dcd3fbbdc282de26ff7f89 to your computer and use it in GitHub Desktop.
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