i have an array of urls and i'm trying to get and display the status for every specific website inside a list. Any ideas for the best approach in react?
const URL = [
{
name: 'site1',
url: 'https://something'
},
{
name: 'site2',
url: 'https://something'
},
{
name: 'site3',
url: 'https://something'
}
]