0.1.1 • Published 5 years ago

@rock-kit/ui-select v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

category: packages

ui-select

npm  build-status  MIT License  Code of Conduct

A component for select and autocomplete behavior.

Components

The ui-select package contains the following:

Installation

yarn add @rock-kit/ui-select

Usage

import React from 'react'
import { Select } from '@rock-kit/ui-select'

const MySelect = () => {
  return (
    <Select>
      <Select.Option>Option one</Select.Option>
      <Select.Option>Option two</Select.Option>
    </Select>
  )
}

For detailed usage and documentation, see Select examples.