mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 14:49:37 +01:00
11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import React, { FC } from "react";
|
||
|
|
|
||
|
|
export type TCustomAutomationsRootProps = {
|
||
|
|
projectId: string;
|
||
|
|
workspaceSlug: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export const CustomAutomationsRoot: FC<TCustomAutomationsRootProps> = () => <></>;
|