import React, { Component } from 'react';
import { AppRegistry, Image, StyleSheet, Text, View } from 'react-native';
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fa4',
alignItems: 'center',
justifyContent: 'center',
},
});
class App extends Component {
render() {
return (
Open up App.js to start working on your app!
Changes you make will automatically reload.
Shake your phone to open the developer menu.
);
}
}
export default class Bananas extends Component {
render() {
const pic = {
uri: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg',
};
const img = (
);
return (
img
);
}
}
// skip this line if using Create React Native App
// AppRegistry.registerComponent('AwesomeProject', () => Bananas);