6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
|
|
import { AppState } from "reducers";
|
||
|
|
|
||
|
|
export const getIsDraggingForSelection = (state: AppState) => {
|
||
|
|
return state.ui.canvasSelection.isDraggingForSelection;
|
||
|
|
};
|