PromucFlow_constructor/app/client/src/actions/propertyPaneActions.ts

11 lines
264 B
TypeScript
Raw Normal View History

2020-02-21 12:16:49 +00:00
import { ReduxActionTypes } from "constants/ReduxActionConstants";
export const updateWidgetName = (widgetId: string, newName: string) => {
return {
type: ReduxActionTypes.UPDATE_WIDGET_NAME_INIT,
payload: {
widgetId,
newName,
},
};
};