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
})
);