mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
15 lines
312 B
TypeScript
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; |