import {createTypedHooks} from 'easy-peasy'; import {IStore} from './store'; // ๐Ÿ‘ˆimport the helper // Provide our model to the helper ๐Ÿ‘‡ const typedHooks = createTypedHooks(); // ๐Ÿ‘‡ export the typed hooks export const useStoreActions = typedHooks.useStoreActions; export const useStoreDispatch = typedHooks.useStoreDispatch; export const useStoreState = typedHooks.useStoreState;