deisgn page account bank header

This commit is contained in:
Ehsan
2024-10-09 20:20:03 +03:30
parent c1898eb654
commit 2a98790ffd
10 changed files with 150 additions and 7 deletions
@@ -0,0 +1,13 @@
import Form from "./form";
import Head from "./Head";
function Account() {
return (
<>
<Head />
<Form />
</>
);
}
export default Account;