🎨 styles: page account

:%s
This commit is contained in:
lytrankieio123 2021-09-10 18:28:35 +07:00
parent 2214d5a567
commit 1667d5859c

13
pages/account.tsx Normal file
View File

@ -0,0 +1,13 @@
import React from 'react';
import { Layout } from 'src/components/common';
import { AccountPage } from 'src/components/modules/account';
const Account = () => {
return (
<AccountPage/>
);
};
Account.Layout = Layout
export default Account;