UNPKG

@dugongjs/cli

Version:

12 lines (11 loc) 329 B
import React from "react"; export type SidebarProps = { isFocused: boolean; isLoading: boolean; error?: string | null; types: string[]; selectedType: string | null; setSelectedType: (value: string) => void; }; export declare const SIDEBAR_WIDTH = 30; export declare const Sidebar: React.FC<SidebarProps>;