JSPM

@instructure/ui-options

10.12.1-snapshot-12
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2112
  • Score
    100M100P100Q140801F
  • License MIT

A view-only component for composing interactive lists and menus.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@instructure/ui-options) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme


    category: packages

    ui-options

    npm MIT License Code of Conduct

    A view-only component for composing interactive lists and menus.

    Components

    The ui-options package contains the following:

    Installation

    npm install @instructure/ui-options

    Usage

    import React from 'react'
    import { Options } from '@instructure/ui-options'
    
    const MyOptions = () => {
      return (
        <Options>
          <Options.Item>Option one</Options.Item>
          <Options.Item>Option two</Options.Item>
        </Options>
      )
    }