feat(companion): implement ble
This commit is contained in:
16
aris/apps/companion/components/Container.tsx
Normal file
16
aris/apps/companion/components/Container.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user