6 lines
223 B
TypeScript
6 lines
223 B
TypeScript
import { type RootState } from './_store';
|
|
|
|
export const getActiveDialog = (state: RootState) => state.dialogs.activeDialog;
|
|
|
|
export const getActiveTradeBoxDialog = (state: RootState) => state.dialogs.activeTradeBoxDialog;
|