mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-17 21:58:03 +00:00
feat: updates
This commit is contained in:
parent
ebebf2a733
commit
a1b0bcf4d3
68 changed files with 4776 additions and 5559 deletions
|
|
@ -6,6 +6,7 @@ import React from 'react'
|
|||
|
||||
interface Props {
|
||||
className?: string
|
||||
isLoading?: boolean
|
||||
title?: string
|
||||
creatorName?: string
|
||||
creatorLink?: string
|
||||
|
|
@ -20,6 +21,7 @@ interface Props {
|
|||
|
||||
const TrackListHeader = ({
|
||||
className,
|
||||
isLoading,
|
||||
title,
|
||||
creatorName,
|
||||
creatorLink,
|
||||
|
|
@ -46,9 +48,16 @@ const TrackListHeader = ({
|
|||
|
||||
<div className='flex flex-col justify-between'>
|
||||
<Info
|
||||
{...{ title, creatorName, creatorLink, description, extraInfo }}
|
||||
{...{
|
||||
title,
|
||||
creatorName,
|
||||
creatorLink,
|
||||
description,
|
||||
extraInfo,
|
||||
isLoading,
|
||||
}}
|
||||
/>
|
||||
<Actions {...{ onPlay, onLike, isLiked }} />
|
||||
<Actions {...{ onPlay, onLike, isLiked, isLoading }} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue