let { ChoiceGroup, IChoiceGroupOption, Fabric } = window.Fabric; interface IChoiceGroupLabelExampleState { imageKey: string; } class ChoiceGroupLabelExample extends React.Component<{}, IChoiceGroupLabelExampleState> { constructor(props: {}) { super(props); this.state = { imageKey: '' }; } public render() { return (