import React from 'react';
import UserDetails from "./user_profile";
import { Redirect } from "react-router-dom";
import CompanyProfile from "./company_profile";
import TeamProfile from "./team_profile";
const Profile = (props) => {
if(props.userProfile.type==="USER"){
return (
);
}
if(props.userProfile.type==="COMPANY"){
return (
);
}
if(props.userProfile.type==="TEAM"){
return (
);
}
return(
);
}
export default Profile;