import React from 'react'; import UserDetails from "./components/profiles/user_profile"; import { Redirect } from "react-router-dom"; import CompanyProfile from "./components/profiles/company_profile"; import TeamProfile from "./components/profiles/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;