import * as React from 'react' import { WALLETCONNECT_CONNECT_BUTTON_ID } from '../constants' interface ConnectButtonProps { name: string color: string href: string onClick: (event: React.MouseEvent) => void } function ConnectButton(props: ConnectButtonProps) { return ( {props.name} ) } export default ConnectButton