9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
|
|
import { AppState } from "reducers";
|
||
|
|
|
||
|
|
export const getHelpModalOpen = (state: AppState): boolean =>
|
||
|
|
state.ui.help.modalOpen;
|
||
|
|
|
||
|
|
export const getDefaultRefinement = (state: AppState): string => {
|
||
|
|
return state.ui.help.defaultRefinement || "";
|
||
|
|
};
|