DeprecatedThis package is deprecated
@kata-kit/react-select
Wicara wrapper for react-select.
Install
# yarn
yarn add @kata-kit/react-select
# npm
npm install @kata-kit/react-select
Usage
To use this component within your React app, import as follows:
import { SelectBase } from '@kata-kit/react-select';
import options from './options';
const Component = ({ children }) => (
<SelectBase options={options} isClearable />
);