feat(companion): initial rn port scaffold
This commit is contained in:
9
aris/components/Container.tsx
Normal file
9
aris/components/Container.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
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',
|
||||
};
|
||||
Reference in New Issue
Block a user