Skip to content

Select

Select is a widget that provides a selectable drop down menu

Example

example_select.tsx
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