mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
|
"use client";
|
||
|
|
||
|
import React from "react";
|
||
|
// components
|
||
|
import { PageHead } from "@/components/core";
|
||
|
import { ProfileIssuesPage } from "@/components/profile/profile-issues";
|
||
|
|
||
|
const ProfileAssignedIssuesPage = () => (
|
||
|
<>
|
||
|
<PageHead title="Profile - Assigned" />
|
||
|
<ProfileIssuesPage type="assigned" />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default ProfileAssignedIssuesPage;
|