D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
share
/
grafana
/
public
/
app
/
core
/
components
/
Signup
/
Filename :
VerifyEmailPage.tsx
back
Copy
import React from 'react'; import { LoginLayout, InnerBox } from '../Login/LoginLayout'; import { VerifyEmail } from './VerifyEmail'; export const VerifyEmailPage = () => { return ( <LoginLayout> <InnerBox> <VerifyEmail /> </InnerBox> </LoginLayout> ); }; export default VerifyEmailPage;