Guest User

Untitled

a guest
Aug 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. {
  2. data.stores.map(store => (
  3. <Card button onPress={() => this.props.navigation}>
  4. <CardItem header>
  5. <Text>{store.storeId} - {store.storeName}</Text>
  6. <Right>
  7. <Icon name="arrow-forward" />
  8. </Right>
  9. </CardItem>
  10. </Card>
  11. ))
  12. }
  13.  
  14. stores: [
  15. {
  16. storeId: 2,
  17. storeName: "Blah",
  18. phone: "0404040404",
  19. Status: "Retail Partner",
  20. Manager: "Blah",
  21. },
Add Comment
Please, Sign In to add comment