mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
13 lines
238 B
JavaScript
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);
|
|
};
|