@cimpress/react-components
Version:
React components to support the MCP styleguide
19 lines • 638 B
TypeScript
export default class SelectDemo extends React.Component<any, any, any> {
constructor(props: any);
constructor(props: any, context: any);
state: {
options: {
value: string;
label: string;
}[];
selectedSingle: undefined;
selectedMulti: undefined;
selectedBlur: undefined;
};
onSingleSelectionChange: (selectedSingle: any) => void;
onMultiSelectionChange: (selectedMulti: any) => void;
onBlurSelectionChange: (selectedBlur: any, action: any) => void;
render(): React.JSX.Element;
}
import React from 'react';
//# sourceMappingURL=select.d.ts.map