Skip to content

Select

Select Component for single choice

Usage

import {Select} from 'deft-react';
function App() {
const options = [
{label: "Rust", value: "rust"},
{label: "JavaScript", value: "javascript"},
]
return <Select options={options} />
}

Properties

PropertyDescriptionTypeDefault
valueCurrent valuestring-
optionsSelection optionsSelectOption[]-
placeholderPlaceholder textstring-
disabledWhether disabledbooleanfalse

Events

EventDescriptionEvent Type
changeSelection state changed-