import { useAppStore } from "../stores/app-store"; export function PreviewBox() { const text = useAppStore((s) => s.previewText); const active = useAppStore((s) => s.previewActive); const hasText = text.length > 0; return (

{hasText ? text : "按住说话…"}

); }