Skip to content

Instantly share code, notes, and snippets.

@jai-adapptor
Created May 17, 2022 06:52
Show Gist options
  • Save jai-adapptor/c277558fea3944be10b01385f2c29847 to your computer and use it in GitHub Desktop.
Save jai-adapptor/c277558fea3944be10b01385f2c29847 to your computer and use it in GitHub Desktop.
FULL
import { View, Text, StyleSheet } from 'react-native';
import React from 'react';
const MainContent = () => {
return (
<View style={styles.container}>
<Text>MainContent</Text>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F59CFF',
},
});
export default MainContent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment