import { cx, css } from '@emotion/css' import { breakpoint as bp } from '@/web/utils/const' import ArtistInfo from './ArtistInfo' import Actions from './Actions' import LatestRelease from './LatestRelease' import Cover from './Cover' import useArtist from '@/web/api/hooks/useArtist' import { useParams } from 'react-router-dom' const Header = () => { const params = useParams() const { data: artistRaw, isLoading } = useArtist({ id: Number(params.id) || 0, }) const artist = artistRaw?.artist return (
) } export default Header