2024-06-07 20:17:03 +03:00
|
|
|
import RequireAuth from '@/components/wrap/RequireAuth';
|
|
|
|
import { UserProfileState } from '@/context/UserProfileContext';
|
|
|
|
|
2024-06-26 19:47:05 +03:00
|
|
|
import UserContents from './UserContents';
|
2024-06-07 20:17:03 +03:00
|
|
|
|
|
|
|
function UserProfilePage() {
|
|
|
|
return (
|
|
|
|
<RequireAuth>
|
|
|
|
<UserProfileState>
|
2024-06-26 19:47:05 +03:00
|
|
|
<UserContents />
|
2024-06-07 20:17:03 +03:00
|
|
|
</UserProfileState>
|
|
|
|
</RequireAuth>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserProfilePage;
|