NimUI
ComponentsForms

MultiSelect

Searchable multi-select with removable chips

MultiSelect is for filters and assignment fields where operators pick more than one value.

Import

import { MultiSelect } from '@nim-ui/components';

Basic Usage

Review Owners
Operations
Code
<MultiSelect
  options={ownerOptions}
  value={owners}
  onChange={setOwners}
  name="owners"
/>

Selected values render removable chips and repeated hidden inputs with the same name.

On this page