How to display complex json object with following response,
const movie = "AVTAR";
const displayData = {
"actor": [{
"id": 1,
"name": "john"
}, {
"id": 2,
"name": "peter"
}],
"actress": [{
"id": 1,
"name": "ema"
}, {
"id": 2,
"name": "molly"
}]
}
on UI I need to show like,
Avatar >> actor >> john
Avatar >> actor >> peter
Avatar >> actress >> ema
Avatar >> actress >>molly
I am using react functional component with es map function