@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
14 lines (13 loc) • 377 B
TypeScript
/// <reference types="react" />
import { Node } from "../../types";
declare type Props = {
node: Node;
nodes: Node[];
};
/**
* Represents a single section on the function documentation.
*
* @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
*/
declare const ProcessSection: ({ node, nodes }: Props) => JSX.Element;
export default ProcessSection;