import React from "react"; import type { ComponentProps } from "react"; import { Text } from "@jobber/components-native"; type TextStoryArgs = Pick< ComponentProps, "children" | "level" | "reverseTheme" >; export function TextBasic(props: Partial) { return ( {props.children ?? '"640K is more memory than anyone will ever need on a computer" - Not Bill Gates'} ); }