import React, { useState } from "react"; import { action } from "storybook/actions"; import { ActionItem, Card, Content, InputDate, Text, } from "@jobber/components-native"; import type { ActionItemProps } from "@jobber/components-native"; export function ActionItemMixedComponentsExample( props: Partial, ) { const [startDate, setStartDate] = useState(undefined); return ( action("alert")("👍")} {...props} > Casey Young ); }