Guest User

Untitled

a guest
Mar 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. this.state = {
  2. curDate : null
  3. }
  4.  
  5. componentDidMount() {
  6. setInterval( () => {
  7. this.setState({
  8. curDate : new Date().getSeconds()
  9. })
  10. },1000)
  11. }
  12.  
  13. render() {
  14. return (
  15. <div>
  16. <p>{this.state.curDate}</p>
  17. </div>
  18. );
  19. }
Add Comment
Please, Sign In to add comment