feishin/src/renderer/features/player/components/full-screen-similar-songs.tsx

14 lines
382 B
TypeScript
Raw Normal View History

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}
/>
2024-02-19 09:55:37 -08:00
) : null;
};