Files
Galaxies-my-expo-app/components/Container.tsx
T
Dennis Hundertmark 08fbd0443e Initial commit
Generated by create-expo-stack 2.14.1
2025-03-12 16:00:34 +01:00

10 lines
257 B
TypeScript

import { SafeAreaView } from 'react-native';
export const Container = ({ children }: { children: React.ReactNode }) => {
return <SafeAreaView className={styles.container}>{children}</SafeAreaView>;
};
const styles = {
container: 'flex flex-1 m-6',
};