import { Actions, useStoreActions } from 'easy-peasy'; import { FlashStore } from '@/state/flashes'; import { ApplicationStore } from '@/state'; const useFlash = (): Actions => { return useStoreActions((actions: Actions) => actions.flashes); }; export default useFlash;