import * as Tooltip from '@radix-ui/react-tooltip'; import { ReplyIcon } from '@shared/icons'; import { useComposer } from '@stores/composer'; export function NoteReply({ id, pubkey, root, }: { id: string; pubkey: string; root?: string; }) { const setReply = useComposer((state) => state.setReply); return ( Quick reply ); }