Home > database >  how to loop my react data, its not showing my data
how to loop my react data, its not showing my data

Time:03-18

I makes crud with react but i have trouble when try to displaying from data table. please help me this my code

my conn to api

this my looping data

looping code

this the console log

console log

CodePudding user response:

Your second image it's cut in half, try to re-uploaded it,

Best regards

CodePudding user response:

I saw that you make an array which contains a lot of arrays. Is this your expectation?

rowsData = [
    [{ DocumentID: 1, DocumentName: 2, status: 3, navigation: 4 }],
    [{ DocumentID: 1, DocumentName: 2, status: 3, navigation: 4 }]
]
  • Related