7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-03 22:38:58 +02:00

10 lines
306 B
TypeScript

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