mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-14 23:44:01 +02:00
13 lines
423 B
TypeScript
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;
|
|
};
|