Files
create-better-t-stack/apps/cli/templates/frontend/native/components/container.tsx
Aman Varshney 7f441ef670 add orpc
2025-04-17 16:45:33 +05:30

10 lines
239 B
TypeScript

import { SafeAreaView } from "react-native";
export const Container = ({ children }: { children: React.ReactNode }) => {
return (
<SafeAreaView className="flex flex-1 p-4 bg-background">
{children}
</SafeAreaView>
);
};