import React, { Fragment } from 'react' import { useWallet } from '@solana/wallet-adapter-react' import { ChevronDownIcon } from '@heroicons/react/20/solid' import { Menu, Transition } from '@headlessui/react' import mangoStore from '@store/mangoStore' const WalletSelect = () => { const { wallets, select } = useWallet() const group = mangoStore((s) => s.group) return ( {({ open }) => ( <> {wallets?.map((wallet, index) => ( ))} )} ) } export default WalletSelect