2023-07-28 08:09:42 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
// contexts
|
|
|
|
import { ProfileIssuesContextProvider } from "contexts/profile-issues-context";
|
|
|
|
// layouts
|
2023-07-31 11:27:28 +00:00
|
|
|
import { ProfileAuthWrapper } from "layouts/profile-layout";
|
2023-07-28 08:09:42 +00:00
|
|
|
// components
|
2023-07-31 11:27:28 +00:00
|
|
|
import { ProfileIssuesView } from "components/profile";
|
2023-07-28 08:09:42 +00:00
|
|
|
// types
|
|
|
|
import type { NextPage } from "next";
|
|
|
|
|
2023-07-31 11:27:28 +00:00
|
|
|
const ProfileCreatedIssues: NextPage = () => (
|
|
|
|
<ProfileIssuesContextProvider>
|
|
|
|
<ProfileAuthWrapper>
|
|
|
|
<ProfileIssuesView />
|
|
|
|
</ProfileAuthWrapper>
|
|
|
|
</ProfileIssuesContextProvider>
|
|
|
|
);
|
2023-07-28 08:09:42 +00:00
|
|
|
|
|
|
|
export default ProfileCreatedIssues;
|