init glueastack Components

This commit is contained in:
Patryk
2025-04-04 21:52:34 +02:00
parent 3abef3acba
commit b248aee33d
18 changed files with 2980 additions and 1149 deletions

View File

@@ -1,5 +1,8 @@
import { Text, View, Pressable } from "react-native";
import { Link } from "expo-router";
import { Button, ButtonText } from "@/components/ui/button"
export default function Index() {
return (
<View>
@@ -9,6 +12,10 @@ export default function Index() {
<Text>Notices</Text>
</Pressable>
</Link>
<Button size="md" variant="solid" action="primary">
<ButtonText>Zobacz ogłoszenie</ButtonText>
</Button>
</View>
);
}