commerce/pages/account-not-login.tsx
2021-09-14 11:46:27 +07:00

15 lines
312 B
TypeScript

import React from 'react';
import { Layout } from 'src/components/common';
import { AccountSignIn } from 'src/components/modules/account';
const AccountNotLogin = () => {
return (
<>
<AccountSignIn/>
</>
);
};
AccountNotLogin.Layout = Layout
export default AccountNotLogin;