fix: add a button in the footer of the card

This commit is contained in:
Harsh Khandeparkar 2020-04-22 17:12:54 +00:00 committed by Sean Yesmunt
parent 4676799c14
commit 17cf98a4bd

View file

@ -158,6 +158,11 @@ function Invited(props: Props) {
}
actions={
<div className="card__actions">
<Button
button="primary"
label={hasVerifiedEmail ? __('Finish Account') : __('Create Account')}
navigate={`/$/${PAGES.AUTH}?redirect=/$/${PAGES.INVITE}/${referrer}`}
/>
<Button button="link" label={__('Skip')} onClick={handleDone} />
</div>
}