react#AbstractComponent JavaScript Examples
The following examples show how to use
react#AbstractComponent.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Typeahead.jsx From covid19-testing with Apache License 2.0 | 6 votes |
() => void,
/**
* If provided, this component will be used to render the options.
*/
optionComponent?: AbstractComponent<any>,
size?: 'small' | 'medium',
theme?: 'standard' | 'contained',
useFieldHeader?: boolean,
value?: any,
Example #2
Source File: TextArea.jsx From covid19-testing with Apache License 2.0 | 5 votes |
TextArea: AbstractComponent<TextAreaProps> = compose( withFieldMessages(), withManagedFocus(), withAnatomyContextProvider(), withAutoGrow() )(TextAreaBase)