import React, { SyntheticEvent } from "react"; import BaseControl, { ControlProps } from "./BaseControl"; import { ControlType } from "../constants/PropertyControlConstants"; import { Button, MenuItem } from "@blueprintjs/core"; import { Select, IItemRendererProps } from "@blueprintjs/select"; class DropDownControl extends BaseControl { constructor(props: DropDownControlProps) { super(props); this.onItemSelect = this.onItemSelect.bind(this); } render() { const DropDown = Select.ofType(); return ( } >