import * as React from 'react'; import { brandColours } from '../utilities/helpers'; interface InviteEmailProperties { playerName: string; inviteCode: string; } export const InviteEmail = (props: InviteEmailProperties) => (

You're in, {props.playerName}!

You've been invited to join {process.env.PRODUCT_NAME}, please click the button below to finish signing up.

Join {process.env.PRODUCT_NAME}

If above button does not work, copy the link below into a new browser tab:
{`${process.env.ROOT_URL}/invitation/${props.inviteCode}`}

);