import { For } from 'solid-js' import { SharePopup, getShareUrl } from '../SharePopup' import { getDescription } from '../../../utils/meta' import { useLocalize } from '../../../context/localize' import type { MediaItem } from './AudioPlayer' import { Popover } from '../../_shared/Popover' import { Icon } from '../../_shared/Icon' import styles from './AudioPlayer.module.scss' export const PlayerPlaylist = (props) => { const { t } = useLocalize() const { tracks, getCurrentTrack, playMedia, articleSlug, body } = props return ( ) }