mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 10:18:40 +08:00
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
![]() |
import AlbumContextMenu from './AlbumContextMenu'
|
||
|
import ArtistContextMenu from './ArtistContextMenu'
|
||
|
import TrackContextMenu from './TrackContextMenu'
|
||
|
|
||
|
const ContextMenus = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<TrackContextMenu />
|
||
|
<AlbumContextMenu />
|
||
|
<ArtistContextMenu />
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ContextMenus
|