mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
16 lines
327 B
TypeScript
16 lines
327 B
TypeScript
import React from 'react';
|
|
import { Layout } from 'src/components/common';
|
|
import { AccountPage, AccountSignIn } from 'src/components/modules/account';
|
|
|
|
const Account = () => {
|
|
return (
|
|
// <AccountPage/>
|
|
<>
|
|
<AccountSignIn/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Account.Layout = Layout
|
|
|
|
export default Account; |