import React from 'react' import GotabitIcon from './GotabitIcon' import { WALLETCONNECT_CONNECT_BUTTON_ID } from '../constants' const URL_PROTOCOL = 'gio:' const URL_HOST_WC = 'wc' const WALLET_LIST = (uri: string) => [ { name: 'Gotabit', logo: , href: `${URL_PROTOCOL}//${URL_HOST_WC}?${uri}`, }, ] function MobileDisplay({ uri }: { uri: string }) { return (
{WALLET_LIST(uri).map((wallet) => (
{wallet.logo}

{wallet.name}

))}
) } export default MobileDisplay