import { Fragment } from 'react' import { Menu, Transition } from '@headlessui/react' import { ChevronDownIcon } from '@heroicons/react/solid' import useMangoStore from '../stores/useMangoStore' import { WALLET_PROVIDERS } from '../utils/wallet-adapters' export default function WalletSelect() { const setMangoStore = useMangoStore((s) => s.set) const handleSelectProvider = (url) => { setMangoStore((state) => { state.wallet.providerUrl = url }) } return (
) }