import React from 'react'; import ProfileView from './ProfileView'; const Profile = (props) => { return <ProfileView />; }; export default Profile;