UNPKG

@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

16 lines (15 loc) 484 B
/// <reference types="react" /> import { Node, Group } from "../../types"; import "../../styles/Processes.css"; declare type Props = { nodes: Node[]; type: Group; }; /** * Used to generate a set of tables describing ether all the workflows or * datasets in a Hailer workspace decided with the prop `type`. * * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi> */ declare const Tables: ({ nodes, type }: Props) => JSX.Element; export default Tables;