Update auth, playlists, tracks, search, profile, dashboard, player, settings, and social features. Add e2e audit specs for all major pages. Update ESLint config, vitest config, and route configuration. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
423 B
TypeScript
19 lines
423 B
TypeScript
/**
|
|
* Queue page — unified in features/library (Audit 2.1)
|
|
*/
|
|
|
|
import { useEffect } from 'react';
|
|
import { useTranslation } from '@/hooks/useTranslation';
|
|
import { QueueView } from '@/components/library/playlists/QueueView';
|
|
|
|
export function QueuePage() {
|
|
const { t } = useTranslation();
|
|
|
|
useEffect(() => {
|
|
document.title = t('queue.pageTitle');
|
|
}, [t]);
|
|
|
|
return <QueueView />;
|
|
}
|
|
|
|
export default QueuePage;
|