@hailer-oy/birds-eye
Version:
This component library directory contains all the react components for Hailer Bird's Eye! Developing these componets happens [here](https://github.com/KvanttoriOy/birds-eye/tree/master/birds-eye-components), only copy your changes in lib from there to src
17 lines (16 loc) • 530 B
TypeScript
/// <reference types="react" />
import { Group, Node } from "../../types";
declare type Props = {
node: Node;
fields: (JSX.Element | null)[] | undefined;
phases: (JSX.Element | null)[] | undefined;
index: number;
type: Group;
};
/**
* Used to create a single entry for a workflow or a dataset documentation.
*
* @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
*/
declare const ProcessInfo: ({ node, fields, phases, index, type }: Props) => JSX.Element;
export default ProcessInfo;