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