import { Row, Card, Col, Avatar, Typography } from 'antd' import SOLLET from 'static/images/wallet/sollet.png' import { useRootDispatch, RootDispatch } from 'store' import { connectWallet } from 'store/wallet.reducer' import { SolletWallet } from '../../lib' const SolletWeb = () => { const dispatch = useRootDispatch() const connect = async () => { const wallet = new SolletWallet() try { await dispatch(connectWallet(wallet)).unwrap() } catch (er: any) { return window.notify({ type: 'error', description: er.message }) } } return ( Sollet Web ) } export default SolletWeb