mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
import CoverWall from '@/web/components/New/CoverWall'
|
|
import PageTransition from '@/web/components/New/PageTransition'
|
|
|
|
const Discover = () => {
|
|
return (
|
|
<PageTransition disableEnterAnimation={true}>
|
|
<CoverWall />
|
|
</PageTransition>
|
|
)
|
|
}
|
|
|
|
export default Discover
|