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

12 lines
253 B
TypeScript
Raw Permalink Normal View History

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