manifold/web/components/play-money-disclaimer.tsx

11 lines
387 B
TypeScript
Raw Normal View History

2022-08-07 15:23:49 +00:00
import { ENV_CONFIG } from 'common/envs/constants'
import { InfoBox } from './info-box'
export const PlayMoneyDisclaimer = () => (
<InfoBox
title="Play-money betting"
className="mt-4 max-w-md"
2022-08-07 15:23:49 +00:00
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!`}
/>
)