UNPKG

opendash

Version:

open.DASH data visualization framework

9 lines (8 loc) 283 B
import * as React from "react"; interface DataItemPickerProps { value: string; onChange: (nextValue: string) => void; style?: React.CSSProperties; } export declare function DataItemPicker({ style, value, onChange, }: DataItemPickerProps): JSX.Element; export {};