Guest User

Untitled

a guest
Oct 16th, 2017
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import React from 'react';
  2.  
  3. class LoginForm extends React.Component {
  4. constructor() {
  5. super(); // Always set your super when using a constructor
  6. this.state = {
  7. username: '',
  8. password: '',
  9. }
  10. }
  11. }
Add Comment
Please, Sign In to add comment