Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/khaliqgant/react-redux-types

Fix for react redux typings
https://github.com/khaliqgant/react-redux-types

Last synced: 4 days ago
JSON representation

Fix for react redux typings

Awesome Lists containing this project

README

        

React Redux Types
==================

# Why?
* This is a temporary fix for typing issues with react-redux as seen in this
[thread](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/27724#issuecomment-418900310)
* It simply changes:
```
export interface ProviderProps {
/**
* The single Redux store in your application.
*/
store: Store;
}
```
to this
```
export interface ProviderProps
{
/**
* The single Redux store in your application.
*/
store: Store;
}
```