0.7.2 • Published 5 years ago

@kata-kit/react-select v0.7.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
5 years ago

@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 />
);