24 lines
577 B
TypeScript
24 lines
577 B
TypeScript
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,
|
|
},
|
|
});
|