mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-27 21:40:36 +03:00
16 lines
344 B
TypeScript
16 lines
344 B
TypeScript
![]() |
import RequireAuth from '../../components/RequireAuth';
|
||
|
import { UserProfileState } from '../../context/UserProfileContext';
|
||
|
import UserTabs from './UserTabs';
|
||
|
|
||
|
function UserProfilePage() {
|
||
|
return (
|
||
|
<RequireAuth>
|
||
|
<UserProfileState>
|
||
|
<UserTabs />
|
||
|
</UserProfileState>
|
||
|
</RequireAuth>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default UserProfilePage;
|