You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP

react-redux-action-dispatchers-hook

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-redux-action-dispatchers-hook - npm Package Compare versions

Comparing version

to
0.0.8

@@ -0,1 +1,7 @@

## 0.0.8
rename back to CreateActionDispatchers
Add demo (https://codesandbox.io/ link in README)
## 0.0.7

@@ -2,0 +8,0 @@

@@ -24,3 +24,3 @@ import { useMemo } from 'react'

const useCreateActionDispatchers = <
const CreateActionDispatchers = <
T extends Record<keyof T, (...args: any) => any>

@@ -34,2 +34,2 @@ >(

export default useCreateActionDispatchers
export default CreateActionDispatchers
{
"name": "react-redux-action-dispatchers-hook",
"version": "0.0.7",
"version": "0.0.8",
"description": "transform action creators into action dispatchers",

@@ -5,0 +5,0 @@ "keywords": [

@@ -9,4 +9,7 @@ # react-redux-create-action-dispatchers

## Example
[See demo here](https://codesandbox.io/s/hardcore-snow-jql32?fontsize=14) _(editable codesandbox.io)_
```ts

@@ -114,2 +117,1 @@ import React, { FC } from 'react'

}
```