mirror of
https://gitlab.com/MrFry/qmining-page
synced 2026-04-28 19:27:36 +02:00
16 lines
369 B
JavaScript
16 lines
369 B
JavaScript
import styles from './thanks.module.css'
|
|
import constants from '../constants.json'
|
|
|
|
export default function Thanks () {
|
|
return (
|
|
<div>
|
|
<div className={styles.container}>
|
|
<div className={styles.title}>Thanks for the donate!</div>
|
|
<div>
|
|
<img src={`${constants.siteUrl}img/thanks.gif`} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|