Skip to content

Instantly share code, notes, and snippets.

@agustinfece
Created June 16, 2021 15:05
Embed
What would you like to do?
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