This commit is contained in:
m
2026-09-09 18:26:50 +02:00
parent 2ba837bcb0
commit 19af7d4bed
3 changed files with 57 additions and 20 deletions
+6 -20
View File
@@ -1,24 +1,10 @@
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import { AuthProvider } from './context/AuthContext';
import Index from './app/index.jsx';
export default function App() {
return (
<View style={styles.container}>
<Text style={styles.title}>Dot.</Text>
<StatusBar style="auto" />
</View>
<AuthProvider>
<Index />
</AuthProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
title: {
fontSize: 32,
fontWeight: '600',
},
});
}