* chore: code split sagas and reducers index file * fix: update imports * chore: remove acl reducers file on ce * fix: code split reducers properly * chore: remove unnecessary import * chore: split root sagas file
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
import { AppState } from "@appsmith/reducers";
|
|
|
|
export const getIsDraggingForSelection = (state: AppState) => {
|
|
return state.ui.canvasSelection.isDraggingForSelection;
|
|
};
|