14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
"use client";
|
|
|
|
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: FC<TAdditionalActivityRoot> = observer(() => <></>);
|