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

14 lines
357 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 (
<SimilarSongsList
fullScreen
song={currentSong}
/>
);
};