Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class Something extends React.Component {
  2. componentDidMount() {
  3. this.doStuff();
  4. }
  5.  
  6. doStuff() {
  7. console.log('do stuff')
  8. setTimeout(this.doStuff, 3000);
  9. }
  10.  
  11. render() {
  12. return null
  13. }
  14. }
Add Comment
Please, Sign In to add comment