Skip to content

Instantly share code, notes, and snippets.

@kasprownik
Created January 29, 2016 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasprownik/4f1c265fa65af9a9bb5b to your computer and use it in GitHub Desktop.
Save kasprownik/4f1c265fa65af9a9bb5b to your computer and use it in GitHub Desktop.
// src/components/Form.js
import React, {PropTypes} from 'react';
export default React.createClass({
displayName: 'Form',
propTypes: {
children: PropTypes.node,
values: PropTypes.object,
update: PropTypes.func,
reset: PropTypes.func,
onSubmit: PropTypes.func
},
render() {
return (
<form>
{this.props.children}
</form>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment