mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
import { useSelector } from 'tgui/backend';
|
|
|
|
import { selectGame } from './selectors';
|
|
|
|
export const useGame = () => {
|
|
return useSelector(selectGame);
|
|
};
|