ubot1 / docs /components /extratox.tsx
sahanind's picture
Upload 96 files
e7ef6c8 verified
raw
history blame contribute delete
723 Bytes
// Example from https://beta.reactjs.org/learn
import { useState } from 'react'
import styles from './extratox.module.css'
function ExtraTox() {
return (
<>
<div className={styles.container}>
<span className={styles.h}>Sponsors</span>
<div className={styles.sponsors}>
<div className={styles.bg}>
<a href="https://t.me/TMWAD" className={styles.text}>
<img src='./tmwad.png' alt='TMWAD IMG' width={200} height={50}/>
</a>
</div>
</div>
<div className={styles.bgt}>
<a href="https://www.buymeacoffee.com/kalanakt" className={styles.text}>
Become Sponsor +
</a>
</div>
</div>
</>
)
}
export default ExtraTox;