import React from "react"; import BaseControl, { ControlProps } from "./BaseControl"; // import DynamicActionCreator from "components/editorComponents/DynamicActionCreator"; import { ActionCreator } from "components/editorComponents/ActionCreator"; class ActionSelectorControl extends BaseControl { handleValueUpdate = (newValue: string) => { const { propertyName } = this.props; this.updateProperty(propertyName, newValue); }; render() { const { propertyValue } = this.props; return ( ); } static getControlType() { return "ACTION_SELECTOR"; } } export default ActionSelectorControl;