Last active
September 2, 2016 12:47
-
-
Save sminutoli/1e6dd9aea7130ddd808183e6e47213fc 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, { PropTypes } from 'react'; | |
const Login = ({isValid, isWaiting, error, onSignIn, onChange, username, password})=> { | |
return <div> | |
<h4 className="login__title">Bienvenido a Warehouse</h4> | |
</div> | |
}; | |
Login.propTypes = { | |
username: PropTypes.string, | |
password: PropTypes.string, | |
isValid: PropTypes.bool, | |
isWaiting: PropTypes.bool, | |
error: PropTypes.object, | |
onSignIn: PropTypes.func.isRequired, | |
onChange: PropTypes.func.isRequired | |
}; | |
export default Login; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment