@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
11 lines (10 loc) • 325 B
TypeScript
/// <reference types="react" />
import { Node } from "../../types";
import "../../styles/Functions.css";
import "highlight.js/styles/atom-one-light.css";
declare type Props = {
nodes: Node[];
network: string;
};
declare const Functions: ({ nodes, network }: Props) => JSX.Element;
export default Functions;