mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
cea39c758e
* chore: layout refactor * fix: profile auth issue * chore: project setting layout refactor * chore: workspace layout refactor * chore: profile layout refactor * chore: layout import refactor
21 lines
555 B
TypeScript
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;
|