JSPM

@instructure/ui-select

7.3.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2123
  • Score
    100M100P100Q139585F
  • License MIT

A component for select and autocomplete behavior.

Package Exports

  • @instructure/ui-select

Readme


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 @instructure/ui-select

Usage

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