mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-27 21:40:36 +03:00
15 lines
323 B
TypeScript
15 lines
323 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; |