react-toastify-redux
react-toastify-redux copied to clipboard
React Toastify with Redux
Properly fix README to reference the correct container.
The npm install command has a typo in it on https://www.npmjs.com/package/react-toastify-redux `npm install --save react-toasify-redux` should be `npm install --save react-toastify-redux` It almost made me give up on using it!
When i run my react redux app with type script get this error: Failed to compile. ``` E:/IDEA/front-end-react-v2/node_modules/react-toastify-redux/src/definitions.d.ts ERROR in E:/IDEA/front-end-react-v2/node_modules/react-toastify-redux/src/definitions.d.ts(23,10): TS2304: Cannot find name 'ToastType'. ``` I try install...
The current Typescript definitions throw a TS2304 error, because the `ToastType` import being used here (imported from the react-toastify package) is an interface, not a type definition - https://github.com/fkhadra/react-toastify/blob/master/index.d.ts#L299. The...
I am unable to use the component. When i am importing `ToastController` and using it, i am getting the below error `Element type is invalid: expected a string (for built-in...