13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
import { PageMetaData } from '../../components/patterns/PageMetaData'
|
|
import { VerifyEmail } from '../../components/templates/auth/VerifyEmail'
|
|
|
|
export default function VerifyEmailPage(): JSX.Element {
|
|
return (
|
|
<>
|
|
<PageMetaData title="Verify Email" path="/auth/verify-email" />
|
|
<VerifyEmail />
|
|
<div data-testid="auth/verify-email-page-tag" />
|
|
</>
|
|
)
|
|
}
|