Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. rows: [
  2. { id: 212, title: "Task 1", complete: 20 },
  3. { id: 5454, title: "Task 2", complete: 40 },
  4. { id: 39172, title: "Task 3", complete: 60 }
  5. ]
  6.  
  7. this.state = { apiData: this.props.getAllData(),
  8. data: [] }
  9. componentDidMount(){
  10. this.state.apiData.then(data => this.setState({ data: data.rows})) }
  11.  
  12. rows: [
  13. { index: 0, id: 212, title: "Task 1", complete: 20 },
  14. { index: 1, id: 5454, title: "Task 2", complete: 40 },
  15. { index: 2, id: 39172, title: "Task 3", complete: 60 }
  16. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement