mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-12 15:22:35 +02:00
9 lines
334 B
TypeScript
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;
|
|
};
|