Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. class Login extends Component {
  2.  
  3. constructor () {
  4. super();
  5. this.state = {
  6. email: '',
  7. password: ''
  8. };
  9. }
  10.  
  11. render () {
  12. return (
  13. <form>
  14.  
  15. <label>Email</label>
  16. <input type="text" name="email" />
  17.  
  18. <label>Password</label>
  19. <input type="password" name="password" />
  20.  
  21. </form>
  22. );
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement