Files
feishin/src/renderer/features/player/components/full-screen-similar-songs.tsx
T
2026-01-03 03:05:53 -08:00

13 lines
423 B
TypeScript

import { SimilarSongsList } from '/@/renderer/features/similar-songs/components/similar-songs-list';
import { usePlayerSong } from '/@/renderer/store';
export const FullScreenSimilarSongs = () => {
const currentSong = usePlayerSong();
return currentSong?.id ? (
<div style={{ height: '100%', width: '100%' }}>
<SimilarSongsList fullScreen song={currentSong} />
</div>
) : null;
};