Select
Select is a widget that provides a selectable drop down menu
Example
import { Select, SelectItem } from '@vixen-js/core-react';
export function SelectExample() { const Items: SelectItem[] = [ { text: "Item 1" }, { text: "Item 2" }, { text: "Item 3" } ]; return ( <Select items={Items} /> );}
Learn more about Select