Portal/rsconcept/frontend/src/pages/UserProfilePage/UserProfilePage.tsx
IRBorisov 6c3461977d
Some checks are pending
Frontend CI / build (18.x) (push) Waiting to run
Refactoring: UI elements naming convention
2024-06-26 19:47:05 +03:00

17 lines
360 B
TypeScript

import RequireAuth from '@/components/wrap/RequireAuth';
import { UserProfileState } from '@/context/UserProfileContext';
import UserContents from './UserContents';
function UserProfilePage() {
return (
<RequireAuth>
<UserProfileState>
<UserContents />
</UserProfileState>
</RequireAuth>
);
}
export default UserProfilePage;