PromucFlow_constructor/app/client/src/selectors/queryPaneSelectors.ts

11 lines
376 B
TypeScript
Raw Normal View History

import { AppState } from "ce/reducers";
export const getQueryPaneConfigSelectedTabIndex = (state: AppState) =>
state.ui.queryPane.selectedConfigTabIndex;
export const getQueryPaneResponseSelectedTab = (state: AppState) =>
state.ui.queryPane.selectedResponseTab;
export const getQueryPaneResponsePaneHeight = (state: AppState) =>
state.ui.queryPane.responseTabHeight;