import React from "react"; import type { ComponentProps } from "react"; import { action } from "storybook/actions"; import { Card, Content, Text } from "@jobber/components-native"; export function CardPressableExample( props: Partial>, ) { return ( action("alert")("🏡"), }} footer={{ title: "View All", onPress: () => action("alert")("View all"), }} {...props} > Address 12345 Fake Street Phone 555-555-5555 ); }