mirror of
https://github.com/kremalicious/blog.git
synced 2025-02-14 21:10:25 +01:00
11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
import { ConnectButton } from '@rainbow-me/rainbowkit'
|
|
import styles from './RainbowKit.module.css'
|
|
|
|
export function RainbowKit() {
|
|
return (
|
|
<div className={styles.rainbowkit}>
|
|
<ConnectButton chainStatus="full" showBalance={false} />
|
|
</div>
|
|
)
|
|
}
|