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;
|
|
};
|