"use client" import { useStore } from "@/app/state/useStore" import { cn } from "@/lib/utils/cn" import { MediaPlayer } from "@/components/interface/media-player" export function PublicLatentMediaView() { // note: const media = useStore(s => s.latentMedia) console.log("PublicLatentMediaView", { "media (latentMedia)": media, }) if (!media) { return null } return (
{/** AI MEDIA PLAYER - HORIZONTAL */} {/** AI MEDIA TITLE - HORIZONTAL */}
{media.label}
{/** MEDIA TOOLBAR - HORIZONTAL */}
{/** MEDIA DESCRIPTION - VERTICAL */}
{/* DESCRIPTION BLOCK */}
no data

{media.description}

) }