<!DOCTYPE html>
<html>
<head>
<title>Example Dapp</title>
<script type="importmap">
{
"imports": {
"@kiruse/cosmos-components": "https://esm.sh/@kiruse/cosmos-components",
"@apophis-sdk/core": "https://esm.sh/@apophis-sdk/core",
"@apophis-sdk/cosmos": "https://esm.sh/@apophis-sdk/cosmos",
"@apophis-sdk/cosmwasm": "https://esm.sh/@apophis-sdk/cosmwasm",
}
}
</script>
<script type="module" src="setup.js"></script>
</head>
<body>
<cosmos-connect-boundary>
<div slot="connect">
<button id="connect-wallet">Connect Wallet</button>
</div>
<div slot="content">
Hello, <cosmos-user-address />!
</div>
</cosmos-connect-boundary>
<script type="module" src="index.js"></script>
</body>
</html>