bug: add dot MenuFilter, add page AccountSignIn , fix spacing MenuFilter

This commit is contained in:
Quangnhankie
2021-09-14 10:41:00 +07:00
parent 6cad0d89ca
commit ee496c95b4
13 changed files with 121 additions and 17 deletions

View File

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