plane/web/pages/[workspaceSlug]/profile/[userId]/subscribed.tsx
Anmol Singh Bhatia cea39c758e
chore: layout refactor (#2532)
* chore: layout refactor

* fix: profile auth issue

* chore: project setting layout refactor

* chore: workspace layout refactor

* chore: profile layout refactor

* chore: layout import refactor
2023-10-25 15:48:57 +05:30

21 lines
555 B
TypeScript

import React from "react";
// layouts
import { AppLayout } from "layouts/app-layout";
import { ProfileAuthWrapper } from "layouts/profile-layout";
// components
import { UserProfileHeader } from "components/headers";
import { ProfileIssuesView } from "components/profile";
// types
import type { NextPage } from "next";
const ProfileSubscribedIssues: NextPage = () => (
<AppLayout header={<UserProfileHeader />}>
<ProfileAuthWrapper>
<ProfileIssuesView />
</ProfileAuthWrapper>
</AppLayout>
);
export default ProfileSubscribedIssues;