import { useTranslation } from 'react-i18next'; import type { PlaySessionDayDetail } from '../../api/library'; import { formatPlayerStatsListenedSec } from '../../utils/format/formatHumanDuration'; type Props = { detail: PlaySessionDayDetail; }; export default function PlayerStatsDayTracks({ detail }: Props) { const { t } = useTranslation(); return ( ); }