interface PlaceholderProps { canExpand?: boolean; type?: 'music' | 'movie' | 'tv'; } const Placeholder = ({ canExpand = false, type = 'movie', }: PlaceholderProps) => { return (
); }; export default Placeholder;