import React from "react"; import BaseControl, { ControlProps } from "./BaseControl"; import { Button, MenuItem } from "@blueprintjs/core"; import { IItemRendererProps } from "@blueprintjs/select"; import { StyledDropDown, StyledDropDownContainer } from "./StyledControls"; import { DropdownOption } from "widgets/DropdownWidget"; class DropDownControl extends BaseControl { render() { const selected: DropdownOption | undefined = this.props.options.find( option => option.value === this.props.propertyValue, ); return ( } popoverProps={{ minimal: true, usePortal: false, }} >