12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
import { View, Text } from 'react-native';
|
|
import { Button, ButtonText } from '@/components/ui/button';
|
|
export default function Home(){
|
|
return (
|
|
<View>
|
|
<Text>Home</Text>
|
|
<Button>
|
|
<ButtonText>Click Me</ButtonText>
|
|
</Button>
|
|
</View>
|
|
);
|
|
} |