wix-style-react
Version:
wix-style-react
12 lines (11 loc) • 316 B
JavaScript
"use strict";
/* eslint-disable */
React.createElement(
FormField,
{ label: "This is the FormField label" },
React.createElement(Dropdown, {
placeholder: "Select dominant hand",
options: [{ id: 0, value: 'Left' }, { id: 1, value: 'Right' }, { id: 2, value: 'Ambidextrous' }],
upgrade: true
})
);