Files
feishin/src/renderer/features/player/components/full-screen-similar-songs.tsx
T
2025-07-12 11:17:54 -07:00

9 lines
334 B
TypeScript

import { SimilarSongsList } from '/@/renderer/features/similar-songs/components/similar-songs-list';
import { useCurrentSong } from '/@/renderer/store';
export const FullScreenSimilarSongs = () => {
const currentSong = useCurrentSong();
return currentSong?.id ? <SimilarSongsList fullScreen song={currentSong} /> : null;
};