AccountVerification.js 225 Bytes
Newer Older
Giang Tran committed
1
import React, {useState} from 'react';
Giang Tran committed
2 3 4 5 6 7 8 9

import AccountVerificationView from './AccountVerificationView';

const AccountVerificaiton = (props) => {
  return <AccountVerificationView />;
};

export default AccountVerificaiton;