import React from "react"; import localImgLoad from "../../../lib/localImgLoad"; export default function ProfileInfo({ profileImg, profileImgInput, profileImgChangeHandler, browseProfileImg, accountDetails, uploadStatus }) { // console.log(accountDetails.banner) return (
profile
{/* DISPLAYS PROFILE UPLOADING STATUS */}
{uploadStatus.message && !uploadStatus.loading &&

{uploadStatus.message}

} {uploadStatus.loading &&

{uploadStatus.message}

}

{accountDetails?.firstname}

{accountDetails?.lastname}

{accountDetails?.age}

); }