import React from "react"; import { action } from "storybook/actions"; import { ActionItem, AutoLink, Card, Content, Text, } from "@jobber/components-native"; import type { ActionItemProps } from "@jobber/components-native"; export function ActionItemInteractiveChildrenExample( props: Partial, ) { return ( action("alert")("Tapped the entire action item")} {...props} > You can tap this link or the whole ActionItem {"www.getjobber.com"} ); }