initial commit

This commit is contained in:
2026-06-29 01:59:27 -04:00
commit d988695498
34 changed files with 9397 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, View } from 'react-native';
import { HotDogCamera } from './src/components/HotDogCamera';
import { colors } from './src/theme';
export default function App() {
return (
<SafeAreaProvider>
<View style={styles.container}>
<StatusBar style="light" />
<HotDogCamera />
</View>
</SafeAreaProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: colors.bg,
},
});