mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 14:49:37 +01:00
* [WEB-4677] improvement: add defaultOpen property to CustomSearchSelect * improvement: add utils to format time duration * improvement: added initializing state for project store * improvement: minor changes in automations page
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> = () => <></>;
|