Created
January 11, 2017 20:40
-
-
Save sjernigan/1f57731b41a492825aa31ec5e7901810 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2}); | |
this.state = { | |
dataSource: ds.cloneWithRows([ | |
{name: 'Scotty and the Reverbs', | |
genre: 'Rock', | |
location: 'Durham, NC', | |
pic: 'https://gp1.wac.edgecastcdn.net/802892/http_public_production/artists/images/149/original/resize:248x186/crop:x0y0w800h600/BF7A56BB-6FD6-46BB-A0F1-14C5542FF1FB-6197-00000F368AE237CD.jpg?1478787906'}, | |
{name: 'Gianna Salvato', | |
genre: 'Pop / Soul', | |
location: 'New York, NY', | |
pic: 'https://gp1.wac.edgecastcdn.net/802892/http_public_production/artists/images/854872/original/crop:x44y0w636h478/resize:140x105/1447689070_artist_854872-1447689053.jpg?1466654377'}, | |
{name: 'Brie', | |
genre: 'Pop / Indie', | |
location: 'Los Angeles, CA', | |
pic: 'https://gp1.wac.edgecastcdn.net/802892/http_public_production/artists/images/1760661/original/crop:x0y106w568h426/resize:140x105/artist_1760661-1464461203.jpg?1467204235'}, | |
{name: 'Krigarè', | |
genre: 'Pop / Indie', | |
location: ' Nashville, TN', | |
pic: 'https://gp1.wac.edgecastcdn.net/802892/http_public_production/artists/images/336138/original/crop:x0y638w2913h2185/resize:140x105/Album_cover_.jpg?1483563743'}, | |
{name: 'Twelve24', | |
genre: 'Dance', | |
location: 'Dance Manchester, ENG, UK', | |
pic: 'https://gp1.wac.edgecastcdn.net/802892/http_public_production/artists/images/4427866/original/crop:x0y389w3199h2399/resize:140x105/1433515353_Twelve24barBWsquare3.jpg?1467588247'}, | |
]) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment