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