dht

Results 4 issues of dht

In the [this](https://www.robinwieruch.de/react-usereducer-middleware/) example, currently, the middleware does not take in account two important aspects of middlewares: 1. the `next` method 2. the `return value` mechanism The `next` method enables...

We use contextTypes so we have to import PropTypes: ``` ScreenHomepage.contextTypes = { locale: PropTypes.string, colors: PropTypes.object, }; ``` However, when using the plugin the build fails with: > ./layout_modules/screen-homepage/ScreenHomepage.js...

A typescript version of the package. I've added mutability to reduce the number instances created. wdyt? the benefits are less instances, the draw side is the need to duplicate() in...

I've implement React Rollbar according to the [documentation](https://www.npmjs.com/package/@rollbar/react) and the error logs are reaching the dashboard as expected: ```jsx import { Provider as ErrorProvider } from '@rollbar/react'; export const rollbarConfig...