mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
20 lines
535 B
TypeScript
20 lines
535 B
TypeScript
import React from "react";
|
|
|
|
// contexts
|
|
import { ProfileIssuesContextProvider } from "contexts/profile-issues-context";
|
|
import { ProfileAuthWrapper } from "layouts/profile-layout";
|
|
// components
|
|
import { ProfileIssuesView } from "components/profile";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
const ProfileAssignedIssues: NextPage = () => (
|
|
<ProfileIssuesContextProvider>
|
|
<ProfileAuthWrapper>
|
|
<ProfileIssuesView />
|
|
</ProfileAuthWrapper>
|
|
</ProfileIssuesContextProvider>
|
|
);
|
|
|
|
export default ProfileAssignedIssues;
|