Files
Bubberstation/tgui/packages/tgui-panel/game/hooks.ts
2023-12-09 23:49:30 -05:00

13 lines
224 B
TypeScript

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