mango-token-sale/pages/index.tsx

14 lines
316 B
TypeScript
Raw Normal View History

2021-04-25 08:03:30 -07:00
import Notifications from '../components/Notification'
import ConnectWalletButton from '../components/ConnectWalletButton'
const Index = () => {
return (
<div className={`bg-th-bkg-1 text-th-fgd-1 transition-all `}>
<ConnectWalletButton />
<Notifications />
</div>
)
}
export default Index