99.10.0 • Published 4 years ago

@temporg/ui-simple-select v99.10.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

category: packages

experimental: true

ui-simple-select

npm build-status MIT License Code of Conduct

A component for standard select element behavior.

Components

The ui-simple-select package contains the following:

Installation

yarn add @temporg/ui-simple-select

Usage

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

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

For detailed usage and documentation, see SimpleSelect examples.