Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. handleMonthChange_next = () => {
  2. this.setState({
  3. currentMonth: +this.state.currentMonth + 1
  4. })
  5. setTimeout(() => {
  6. this.props.getCalendarData(this.state.currentMonth)
  7. },100)
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement