Context providing authentication actions only (mutations). Enables components to trigger auth operations (login, logout, refresh, etc.) without subscribing to state changes, useful for action-only consumers.
export const AuthActionsContext = createContext< AuthActionsContextValue | undefined>(undefined); Copy
export const AuthActionsContext = createContext< AuthActionsContextValue | undefined>(undefined);
Context providing authentication actions only (mutations). Enables components to trigger auth operations (login, logout, refresh, etc.) without subscribing to state changes, useful for action-only consumers.
Source