Files
CHOMPStation2/tgui/packages/tgui-panel/game/hooks.js
Chompstation Bot 331e5230d6 TGUI 4.3
2021-06-19 04:46:36 -04:00

13 lines
238 B
JavaScript

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