feat(companion): initial rn port scaffold

This commit is contained in:
2026-01-11 18:10:27 +00:00
parent 22fbfb9790
commit 8873c372f0
38 changed files with 3179 additions and 0 deletions

22
aris/app/(tabs)/index.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { View } from "react-native";
import { Container } from "@/components/Container";
import { Text } from "@/components/ui/text";
export default function BleScreen() {
return (
<View className={styles.container}>
<Container>
<Text variant="h3">BLE</Text>
<Text className={styles.subtitle}>
Port of SwiftUI BleStatusView will live here.
</Text>
</Container>
</View>
);
}
const styles = {
container: "flex flex-1 bg-white",
subtitle: "mt-2 text-sm text-muted-foreground",
};