How can I get this to work, {showExamples} isn't showing any output. The full source code is here: https://rnplay.org/apps/t2E4Ig
var MyApp = React.createClass({
render() {
var showExamples = examples.map(function(value){
return (
<View>
{value.render}
</View>
);
});
return (
<View>
<Image
source={{uri: 'http://facebook.github.io/react/img/logo_og.png'}}
style={styles.base}
/>
{showExamples}
</View>
);
}
});