Skip to content

Instantly share code, notes, and snippets.

@agustinfece
Created June 16, 2021 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustinfece/b62d065d24ad099edcf8d7ab18f657fb to your computer and use it in GitHub Desktop.
Save agustinfece/b62d065d24ad099edcf8d7ab18f657fb to your computer and use it in GitHub Desktop.
App.js
import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { AuthScreen } from './screens';
export default function App() {
return (
<View style={styles.container}>
<AuthScreen />
<StatusBar style="auto" />
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment