import React from 'react';
import { View, StyleSheet } from 'react-native';
import Logo from './src/Logo.svg';
export default class App extends React.Component {
render() {
return (
<View style={styles.container}>
<Logo fill="#0f0"/>
<Logo fill="#00f"/>
<Logo fill="#00f" fillSecondary="#0ff"/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignSelf: 'center',
},
});