npm.io
0.7.2 • Published 6 years ago

@kata-kit/react-select

Licence
Apache-2.0
Version
0.7.2
Deps
5
Size
6.5 MB
Vulns
0
Weekly
0
Stars
194
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 />
);