Files
plane/apps/web/ce/components/automations/root.tsx

11 lines
228 B
TypeScript
Raw Permalink Normal View History

"use client";
import React, { FC } from "react";
export type TCustomAutomationsRootProps = {
projectId: string;
workspaceSlug: string;
};
export const CustomAutomationsRoot: FC<TCustomAutomationsRootProps> = () => <></>;