mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
19 lines
492 B
TypeScript
19 lines
492 B
TypeScript
import { css, cx } from '@emotion/css'
|
|
import PlayLikedSongsCard from './PlayLikedSongsCard'
|
|
import PageTransition from '@/web/components/New/PageTransition'
|
|
import RecentlyListened from './RecentlyListened'
|
|
import Collections from './Collections'
|
|
|
|
const My = () => {
|
|
return (
|
|
<PageTransition>
|
|
<div className='grid grid-cols-1 gap-10'>
|
|
<PlayLikedSongsCard />
|
|
<RecentlyListened />
|
|
<Collections />
|
|
</div>
|
|
</PageTransition>
|
|
)
|
|
}
|
|
|
|
export default My
|