mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0586d30a33
* refactor: folder structure * style: mobile responsiveness added * chore: add user profile redirection * chore: profile page authorization
21 lines
550 B
TypeScript
21 lines
550 B
TypeScript
import React from "react";
|
|
|
|
// contexts
|
|
import { ProfileIssuesContextProvider } from "contexts/profile-issues-context";
|
|
// layouts
|
|
import { ProfileAuthWrapper } from "layouts/profile-layout";
|
|
// components
|
|
import { ProfileIssuesView } from "components/profile";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
const ProfileSubscribedIssues: NextPage = () => (
|
|
<ProfileIssuesContextProvider>
|
|
<ProfileAuthWrapper>
|
|
<ProfileIssuesView />
|
|
</ProfileAuthWrapper>
|
|
</ProfileIssuesContextProvider>
|
|
);
|
|
|
|
export default ProfileSubscribedIssues;
|