veza/apps/web/src/features/library/pages/QueuePage.tsx
senke 9a4c0d2af4 feat(web): update all features, stories, e2e tests, and auth interceptor
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>
2026-03-31 19:16:36 +02:00

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;