r5n-dev / vscode-react-javascript-snippets

Extension for React/Javascript snippets with search supporting ES7+ and babel features
MIT License
1.72k stars 441 forks source link

Need to improve the code snippet of useDispatch #189

Closed mrdulin closed 3 years ago

mrdulin commented 3 years ago

useDispatch() does NOT accept a function parameter.

It will generate below snippet:

const dispatch = useDispatch(function)

image

Expect:

const dispatch = useDispatch()