Guest User

Untitled

a guest
Oct 17th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import React, { Component } from 'react'
  2.  
  3. class Home extends Component {
  4. constructor(){
  5. super()
  6. this.state = {
  7. username: '',
  8. password: ''
  9. }
  10. }
  11.  
  12. render(){
  13.  
  14. return(
  15. <div>
  16. <h2>Sign Up</h2>
  17. <input type="text" placeholder="username" /><br />
  18. <input type="password" placeholder="password" /><br />
  19. <button>Join</button>
  20. </div>
  21. )
  22. }
  23. }
  24.  
  25. export default Home
Add Comment
Please, Sign In to add comment