Advertisement
Guest User

Untitled

a guest
Apr 4th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <!-- src/components/Login -->
  2. import React, { Component } from "react";
  3. import { Push } from "@progress/kendo-react-animation";
  4. import { Dialog, DialogActionsBar } from "@progress/kendo-react-dialogs";
  5. class Login extends Component {
  6. constructor(props) {
  7. super(props);
  8. this.state = {
  9. email: "",
  10. password: "",
  11. show: true,
  12. visibleDialog: false
  13. };
  14. this.handleEmailChange = this.handleEmailChange.bind(this);
  15. this.handlePasswordChange = this.handlePasswordChange.bind(this);
  16. this.loginUser = this.loginUser.bind(this);
  17. this.toggleDialog = this.toggleDialog.bind(this);
  18. }
  19. ...
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement