'use client'; import { usePlayerMeta } from '../../context/selectors'; export function Artist() { const { artist, album } = usePlayerMeta(); if (!artist && !album) return null; const text = [artist, album].filter(Boolean).join(' ยท '); return (
{text}
); }