99.10.0 • Published 4 years ago

@temporg/ui-select v99.10.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 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 @temporg/ui-select

Usage

import React from 'react'
import { Select } from '@temporg/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.