{"version":3,"file":"card.15601970.js","sources":["../../../app/frontend/entrypoints/page/home/section/pickupMusics/card.tsx"],"sourcesContent":["import { useTranslation } from 'react-i18next'\nimport { useRecoilState } from 'recoil'\nimport { currentPlayState } from '../../../../../src/atoms/CurrentPlayAtom'\nimport { pageState } from '../../../../../src/atoms/PageAtom'\nimport { pastPageState } from '../../../../../src/atoms/PastPageAtom'\n\ntype NFT = {\n chain_id: number\n chain_name: string\n contract_address: string\n token_id: string\n name: string\n image: string\n trial_sound: string\n sound: string\n artist_name: string\n artist_public_id: string\n genres: Genre[]\n}\n\ntype Props = {\n nft: NFT\n playMusic: (target: {\n chain_id: number\n contract_address: string\n token_id: string\n }) => void\n\n postRecommendResult: () => void\n}\n\nfunction HomePickupMusicCard(props: Props) {\n const { t } = useTranslation()\n const [page, setPage] = useRecoilState(pageState)\n const [, setPastPage] = useRecoilState(pastPageState)\n const [currentPlay, setCurrentPlay] = useRecoilState(currentPlayState)\n\n return (\n