feat: 搜索页面和一堆更新

This commit is contained in:
qier222 2022-03-29 00:11:05 +08:00
parent 4d7bc14827
commit b4590c3c34
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
17 changed files with 279 additions and 87 deletions

View file

@ -1,4 +1,3 @@
import { Fragment } from 'react'
import ArtistInline from '@/components/ArtistsInline'
import IconButton from '@/components/IconButton'
import Slider from '@/components/Slider'
@ -27,7 +26,7 @@ const PlayingTrack = () => {
}
return (
<Fragment>
<>
{track && (
<div className='flex items-center gap-3'>
{track?.al?.picUrl && (
@ -67,7 +66,7 @@ const PlayingTrack = () => {
</div>
)}
{!track && <div></div>}
</Fragment>
</>
)
}