Guest User

Untitled

a guest
Mar 22nd, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. declare type Any = any;
  2.  
  3. class LoginForm extends Component {
  4. textInput: Any;
  5. constructor(props) {
  6. super(props);
  7. this.state = {
  8. email: "",
  9. password: ""
  10. };
  11. }
Add Comment
Please, Sign In to add comment