Merge branch 'feat/inda-383-daily-stat' into 'main'
[ProtonMail-WebClient.git] / applications / drive / src / app / redux-store / hooks.ts
blob0a045c0e76284567065de48be4b65c64288af1b6
1 import type { TypedUseSelectorHook } from 'react-redux';
3 import { baseUseDispatch, baseUseSelector } from '@proton/react-redux-store';
5 import type { DriveDispatch, DriveState } from './store';
7 export const useDriveDispatch: () => DriveDispatch = baseUseDispatch;
8 export const useDriveSelector: TypedUseSelectorHook<DriveState> = baseUseSelector;