Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <MaterialTable
  2. columns={columns}
  3. data={this.state.data}
  4. icons={{
  5. Add:()=><AddTaskButton onClick={()=>{}}/>
  6. }}
  7. actions={[
  8. {
  9. icon:this.renderImportButton,
  10. isFreeAction:true
  11. }
  12. ]}
  13. editable={{
  14. onRowAdd: newData => this.onRowAdd(newData)
  15. }}
  16. />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement