This commit is contained in:
James Grugett 2022-08-07 08:23:49 -07:00
parent 166e228032
commit 6f196c7518

View File

@ -1,9 +1,10 @@
import { ENV_CONFIG } from 'common/envs/constants'
import { InfoBox } from './info-box' import { InfoBox } from './info-box'
export const PlayMoneyDisclaimer = () => ( export const PlayMoneyDisclaimer = () => (
<InfoBox <InfoBox
title="Play-money betting" title="Play-money betting"
className="mt-4 max-w-md" className="mt-4 max-w-md"
text="Mana (M$) is the play-money used by our platform to keep track of your bets. It's completely free for you and your friends to get started!" text={`Mana (${ENV_CONFIG.moneyMoniker}) is the play-money used by our platform to keep track of your bets. It's completely free for you and your friends to get started!`}
/> />
) )