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,18 @@
"use client";
import UploadFile from "@/app/component/UploadFile";
import { useRef } from "react";
function Head() {
const fileRef = useRef();
const openInput = () => fileRef.current.click();
return (
<div className="flex items-center justify-center md:justify-start gap-[10px]">
<UploadFile fileRef={fileRef} openInput={openInput} />
</div>
);
}
export default Head;