Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. constructor(props) {
  2. super(props)
  3. /* ***********************************************************
  4. * STEP 1
  5. * set given default value to enhance flexibility
  6. *************************************************************/
  7. const { value } = props
  8. this.state = {
  9. value: value ? value : {
  10. username: '',
  11. password: '',
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement