Guest User

Untitled

a guest
Jul 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. const herbs = this.state.record.map((herb) =>
  2. <View key={herb.id} style={BackStyles.herb_box}>
  3. <Image style={BackStyles.image} source={{uri: `${herb.name}.jpg`}}/>
  4. <View style={{flexDirection: 'column',}}><Text style={BackStyles.header}>{herb.name}</Text>
  5. <Text style={BackStyles.sub}>{herb.bot}</Text></View>
  6. </View>
  7. );
Add Comment
Please, Sign In to add comment