mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-27 13:30:36 +03:00
17 lines
348 B
TypeScript
17 lines
348 B
TypeScript
import RequireAuth from '@/components/wrap/RequireAuth';
|
|
import { UserProfileState } from '@/context/UserProfileContext';
|
|
|
|
import UserTabs from './UserTabs';
|
|
|
|
function UserProfilePage() {
|
|
return (
|
|
<RequireAuth>
|
|
<UserProfileState>
|
|
<UserTabs />
|
|
</UserProfileState>
|
|
</RequireAuth>
|
|
);
|
|
}
|
|
|
|
export default UserProfilePage;
|