add proptypes to signup form
This commit is contained in:
parent
2bdd682771
commit
7a07d5380d
1 changed files with 64 additions and 55 deletions
|
@ -1,10 +1,9 @@
|
||||||
import React from 'react';
|
import React, { PropTypes } from 'react';
|
||||||
|
|
||||||
class SignupForm extends React.Component {
|
function SignupForm(props) {
|
||||||
render() {
|
const { fields: { username, email, password, confirmPassword }, handleSubmit } = props;
|
||||||
const { fields: { username, email, password, confirmPassword }, handleSubmit } = this.props;
|
|
||||||
return (
|
return (
|
||||||
<form className="signup-form" onSubmit={handleSubmit(this.props.signUpUser.bind(this))}>
|
<form className="signup-form" onSubmit={handleSubmit(props.signUpUser.bind(this))}>
|
||||||
<p className="signup-form__field">
|
<p className="signup-form__field">
|
||||||
<label className="signup-form__username-label" htmlFor="username">Username:</label>
|
<label className="signup-form__username-label" htmlFor="username">Username:</label>
|
||||||
<input
|
<input
|
||||||
|
@ -53,7 +52,17 @@ class SignupForm extends React.Component {
|
||||||
<input type="submit" value="Sign Up" />
|
<input type="submit" value="Sign Up" />
|
||||||
</form>
|
</form>
|
||||||
);
|
);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SignupForm.propTypes = {
|
||||||
|
fields: PropTypes.shape({
|
||||||
|
username: PropTypes.string.isRequired,
|
||||||
|
email: PropTypes.string.isRequired,
|
||||||
|
password: PropTypes.string.isRequired,
|
||||||
|
confirmPassword: PropTypes.string.isRequired
|
||||||
|
}).isRequired,
|
||||||
|
handleSubmit: PropTypes.func.isRequired,
|
||||||
|
signUpUser: PropTypes.func.isRequired
|
||||||
|
};
|
||||||
|
|
||||||
export default SignupForm;
|
export default SignupForm;
|
||||||
|
|
Loading…
Reference in a new issue