UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

11 lines (10 loc) 328 B
import * as React from 'react'; export interface SelectListOption { label: string; value: string; } export interface SelectListProps { options: SelectListOption[]; onChange: (option: SelectListOption) => void; } export declare const SelectList: React.FunctionComponent<React.PropsWithChildren<SelectListProps>>;