forked from github/plane
0586d30a33
* refactor: folder structure * style: mobile responsiveness added * chore: add user profile redirection * chore: profile page authorization
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;
|