import * as React from 'react'; import { Form } from '@fluentui/react-northstar'; const items = [ { name: 'pizza', key: 'Capricciosa', label: 'Capricciosa', value: 'capricciosa', }, { name: 'pizza', key: 'Prosciutto', label: 'Prosciutto', value: 'prosciutto', disabled: true, }, { name: 'pizza', key: 'Pepperoni', label: 'Pepperoni', value: 'pepperoni', }, ]; const FormExampleComponents = () => (