mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
21 lines
433 B
TypeScript
21 lines
433 B
TypeScript
import * as React from 'react';
|
|
import I18n from 'i18n-js';
|
|
import Box from '../common/Box';
|
|
|
|
interface Props {
|
|
subdomain: string;
|
|
userEmail: string;
|
|
}
|
|
|
|
const ConfirmSignUpPage = ({
|
|
subdomain,
|
|
userEmail,
|
|
}: Props) => (
|
|
<Box>
|
|
<h3>{ I18n.t('signup.step3.title') }</h3>
|
|
|
|
<p>{ I18n.t('signup.step3.message', { email: userEmail, subdomain: `${subdomain}.astuto.io` }) }</p>
|
|
</Box>
|
|
);
|
|
|
|
export default ConfirmSignUpPage; |