import React from "react"; import localImgLoad from "../../../lib/localImgLoad"; export default function ProfileInfo({ profileImg, profileImgInput, profileImgChangHandler, browseProfileImg, accountDetails, }) { return (
profileImgChangHandler(e)} type="file" className="hidden" />

{accountDetails?.firstname}

{accountDetails?.lastname}

{accountDetails?.age}

); }