Flow

Components

ComboBox

Die ComboBox Komponente verbindet ein Textfield mit einer Auswahl an Optionen, die durch Eingabe in das Textfield gefiltert wird.GitHub

Beispiel

import ComboBox from "@mittwald/flow-react-components/ComboBox";
import Option from "@mittwald/flow-react-components/Option";
import Label from "@mittwald/flow-react-components/Label";

<ComboBox>
  <Label>Domain</Label>
  <Option>mydomain.de</Option>
  <Option>shop.mydomain.de</Option>
  <Option>anotherdomain.com</Option>
  <Option>www.anotherdomain.com</Option>
  <Option>anotherdomain.com/shop</Option>
  <Option>anotherdomain.com/blog</Option>
  <Option>onemoredomain.de</Option>
  <Option>www.onemoredomain.de</Option>
</ComboBox>
Feedback geben