"use client"; import { useRef } from "react"; import { Button } from "@mui/material"; import ProfileP from "@/components/icons/ProfileP"; import ArrowLeftPU from "@/components/icons/ArrowLeftPU"; function UploadFile() { const fileRef = useRef(); const openInput = () => fileRef.current.click(); return ( <>