Button component
/components
import PrimaryButton from '@/components/PrimaryButton'; import OutlineButton from '@/components/OutlineButton'; import GhostButton from '@/components/GhostButton'; const handlePress = () => alert('Button Pressed!'); export default function button() { return ( <PrimaryButton onPress={handlePress} title="Save" /> <OutlineButton onPress={handlePress} title="Edit" /> <GhostButton onPress={handlePress} title="Delete" /> ) }