mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-17 13:43:21 +00:00
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
import { useSelector } from 'common/redux';
|
|
import { selectDebug } from './selectors';
|
|
|
|
export const useDebug = (context) => useSelector(context, selectDebug);
|