import React, {useEffect} from "react";
import { useAuth } from '../../context/AuthContext';
import avatar from "../../assets/img/team/avatar.png";
const JKCurrentUserAvatar = () => {
const { currentUser } = useAuth();
if(currentUser && currentUser.photo_url) {
return (
);
}else {
return (
);
}
}
export default JKCurrentUserAvatar;