import { tailwind } from "@tailwindzone/connect-web3-onboard"
const wallets = [
tailwind(),
// other wallets
]
const chains = [
{
id: 1329,
token: "Sei",
label: "Sei Mainnet",
rpcUrl: "https://evm-rpc.sei-apis.com"
}
]
const onboard = Onboard({
wallets,
chains
})
function App() {
return (<>
{/* Other components */ }
<button onClick={async () => {
// Modal should show TAILWIND wallet
await onboard.connectWallet()
}}>
Connect
</button>
</>)
}