Last active
June 28, 2021 18:10
-
-
Save narennaik/56a8dc7e7d32416d7b74d969286e09e5 to your computer and use it in GitHub Desktop.
Data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const domainList = [ | |
{ | |
id: 1, | |
details: { | |
name: 'nytimes.com', | |
valid: true, | |
}, | |
}, | |
{ | |
id: 2, | |
details: { | |
name: 'times.com', | |
valid: false, | |
}, | |
}, | |
{ | |
id: 3, | |
details: { | |
name: 'aljazeera.com', | |
valid: true, | |
}, | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment