category: packages
ui-simple-select
A component for standard select element behavior.
Components
The ui-simple-select
package contains the following:
Installation
npm install @instructure/ui-simple-select
Usage
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.