@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
15 lines (14 loc) • 425 B
TypeScript
import React, { ReactNode } from 'react';
import '../styles/Sidebar.css';
/**
* This is a generic sidebar component used with both function
* and workflow/dataset documentation.
*
* @author Juhana Kuparinen
* @author Patrik Larsen
*/
declare const Sidebar: ({ children, contentRef }: {
children: ReactNode;
contentRef: React.RefObject<HTMLInputElement>;
}) => JSX.Element;
export default Sidebar;