react-select-module
Version:
A Select control built with and for ReactJS
10 lines (7 loc) • 335 B
JavaScript
import { makeAsyncSelect } from './Async';
import { makeCreatableSelect } from './Creatable';
import manageState from './stateManager';
import Select from './Select';
const SelectCreatable = makeCreatableSelect(Select);
const SelectCreatableState = manageState(SelectCreatable);
export default makeAsyncSelect(SelectCreatableState);