2023-07-28 08:09:42 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// layouts
|
2023-10-25 10:18:57 +00:00
|
|
|
import { AppLayout } from "layouts/app-layout";
|
2023-07-31 11:27:28 +00:00
|
|
|
import { ProfileAuthWrapper } from "layouts/profile-layout";
|
2023-07-28 08:09:42 +00:00
|
|
|
// components
|
2023-10-25 10:18:57 +00:00
|
|
|
import { UserProfileHeader } from "components/headers";
|
2023-07-31 11:27:28 +00:00
|
|
|
import { ProfileIssuesView } from "components/profile";
|
2023-07-28 08:09:42 +00:00
|
|
|
// types
|
|
|
|
import type { NextPage } from "next";
|
|
|
|
|
2023-07-31 11:27:28 +00:00
|
|
|
const ProfileSubscribedIssues: NextPage = () => (
|
2023-10-25 10:18:57 +00:00
|
|
|
<AppLayout header={<UserProfileHeader />}>
|
2023-07-31 11:27:28 +00:00
|
|
|
<ProfileAuthWrapper>
|
|
|
|
<ProfileIssuesView />
|
|
|
|
</ProfileAuthWrapper>
|
2023-10-25 10:18:57 +00:00
|
|
|
</AppLayout>
|
2023-07-31 11:27:28 +00:00
|
|
|
);
|
2023-07-28 08:09:42 +00:00
|
|
|
|
|
|
|
export default ProfileSubscribedIssues;
|