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 ( ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: colors.bg, }, });