* [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
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
"use client";
|
|
|
|
import React, { FC } from "react";
|
|
|
|
export type TCustomAutomationsRootProps = {
|
|
projectId: string;
|
|
workspaceSlug: string;
|
|
};
|
|
|
|
export const CustomAutomationsRoot: FC<TCustomAutomationsRootProps> = () => <></>;
|