Guest User

Untitled

a guest
Dec 12th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <WebView
  2. source={{uri: `<h1>Hello World</h1>`}}
  3. style={{marginTop: 20}}
  4. />
  5.  
  6. return (
  7. <Container style={styles.container}>
  8. <View>
  9. {this.state.section.map(article =>
  10. <View>
  11.  
  12. <WebView
  13. source={{uri:article.data.description}}
  14. style={{marginTop: 20}}
  15. />
  16. </View>
  17.  
  18. )}
  19. </View>
  20.  
  21. </Container>
  22. );
Add Comment
Please, Sign In to add comment