ConceptPortal-public/rsconcept/frontend/src/pages/UserProfilePage/index.tsx

16 lines
344 B
TypeScript
Raw Normal View History

2023-07-31 23:47:18 +03:00
import RequireAuth from '../../components/RequireAuth';
import { UserProfileState } from '../../context/UserProfileContext';
import UserTabs from './UserTabs';
2023-07-15 17:46:19 +03:00
function UserProfilePage() {
return (
2023-07-31 23:47:18 +03:00
<RequireAuth>
<UserProfileState>
<UserTabs />
</UserProfileState>
</RequireAuth>
2023-07-15 17:46:19 +03:00
);
}
2023-07-25 20:27:29 +03:00
export default UserProfilePage;