Files
2020-08-15 16:08:10 +08: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);
};