Files
aris-old/aris/apps/companion/components/Container.tsx

17 lines
318 B
TypeScript
Raw Normal View History

2026-01-12 22:24:33 +00:00
import { cn } from "@/lib/utils";
import { SafeAreaView } from "react-native-safe-area-context";
export const Container = ({
children,
className,
}: {
children: React.ReactNode;
className?: string;
}) => {
return (
<SafeAreaView className={cn("flex flex-1", className)}>
{children}
</SafeAreaView>
);
};