Select
---import { Select } from "wf-components";---<Select label="Input Select Label" options={["Select Option 1", "Select Option 2"]}/>Props
Inherits props from the standard html select element.
label
Optional The label for the select field.
options
Required An array of strings to be used as options for the select field.
errorMessage
Optional An error message to display when the select field is invalid.
---import { Select } from "wf-components";---<Select label="Input Select Label" options={["Select Option 1", "Select Option 2"]} errorMessage="This is an error message"/>