mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
|
|
export type TIssuePageActivity = { activityId: string; showIssue?: boolean; ends?: "top" | "bottom" | undefined };
|
|
|
|
export const IssuePageActivity: FC<TIssuePageActivity> = observer(() => <></>);
|