mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 11:21:38 +00:00
14 lines
357 B
TypeScript
14 lines
357 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 (
|
||
|
|
<SimilarSongsList
|
||
|
|
fullScreen
|
||
|
|
song={currentSong}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
};
|