mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
17 lines
393 B
TypeScript
17 lines
393 B
TypeScript
|
"use client";
|
||
|
|
||
|
// store
|
||
|
import { observer } from "mobx-react-lite";
|
||
|
// components
|
||
|
import { PageHead } from "@/components/core";
|
||
|
import { ProfileIssuesPage } from "@/components/profile/profile-issues";
|
||
|
|
||
|
const ProfileCreatedIssuesPage = () => (
|
||
|
<>
|
||
|
<PageHead title="Profile - Created" />
|
||
|
<ProfileIssuesPage type="created" />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default observer(ProfileCreatedIssuesPage);
|