I have some data in a react project and I need to display the titles in a list.
Here is the data:
const data = [
{
"things":[
{
"id":"1",
"subdata":{
"date":{
"exp":"2018-17-23"
},
"titles":[
{
"title":"title1"
},
{
"title":"title2"
}
]
}
}
]
}
]
How can I list the title values in a
- { title value here }