Files
CHOMPStation2/tgui/packages/tgui_ch/debug/hooks.js
2023-05-23 17:43:01 +02:00

11 lines
229 B
JavaScript

/**
* @file
* @copyright 2020 Aleksej Komarov
* @license MIT
*/
import { useSelector } from 'common/redux';
import { selectDebug } from './selectors';
export const useDebug = (context) => useSelector(context, selectDebug);