mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 10:53:33 +00:00
13 lines
382 B
TypeScript
13 lines
382 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;
|
|
};
|