import type { ComponentProps } from "react"; import React from "react"; import { AutoLink } from "@jobber/components-native"; export function AutoLinkBasicExample( props: Partial>, ) { return ( {props.children ?? "I am a test with a link to getjobber.com! Call me at 902-555-5555 or email me at test@example.com"} ); }