import type { FC } from "react"; import { Text, type TextProps } from "react-native"; import { useAuiState } from "@assistant-ui/store"; export type AttachmentNameProps = TextProps; export const AttachmentName: FC = (props) => { const name = useAuiState((s) => s.attachment.name); return {name}; };