Package Exports
- @instructure/ui-simple-select
Readme
category: packages
ui-simple-select
A component for standard select element behavior.
Components
The ui-simple-select package contains the following:
Installation
yarn add @instructure/ui-simple-selectUsage
import React from 'react'
import { Select } from '@instructure/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.