Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. constructor() {
  2. super();
  3.  
  4. this.state = {
  5. user: null,
  6. email: "",
  7. password: "",
  8. formValid: true,
  9. error: ""
  10. };
  11. }
  12.  
  13. handleCloseNotification = () => {
  14. this.setState({ formValid: false });
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement