mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
* [WEB-5473] fix: source map errors * [WEB-5473] chore: run codemod * fix: build errors in editor --------- Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com>
14 lines
363 B
TypeScript
14 lines
363 B
TypeScript
import type { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
|
|
export type TAdditionalActivityRoot = {
|
|
activityId: string;
|
|
showIssue?: boolean;
|
|
ends: "top" | "bottom" | undefined;
|
|
field: string | undefined;
|
|
};
|
|
|
|
export const AdditionalActivityRoot = observer(function AdditionalActivityRoot(_props: TAdditionalActivityRoot) {
|
|
return <></>;
|
|
});
|