UNPKG

@grandlinex/react-components

Version:
10 lines (9 loc) 261 B
import React from 'react'; export type SideBarPanelProps = { selectPanel: string | null; setPanel: (panel: string | null) => void; panelRenderer: React.ReactNode | null; }; export declare const SidebarPanel: React.FC<{ c: SideBarPanelProps; }>;