import React from "react"; import { action } from "storybook/actions"; import { EmptyState } from "@jobber/components-native"; import type { EmptyStateProps } from "@jobber/components-native"; export function EmptyStateBasic(props: Partial) { return ( { action("alert")("👋"); }, }} secondaryAction={{ label: "Don't Forget About Me", onPress: () => { action("alert")("👋"); }, }} {...props} /> ); }