How to show table data in react javascript from a list of object?

I am following some tutorials on youtube, he is showing data succesfully but it is hard coded data, and I want to take data from backend. Data is coming successfully(I see it on console with console.log) but I could not show in table. Here is my code: import React, { useEffect, useState } from ‘react’;… Read More How to show table data in react javascript from a list of object?