@lowentry/react-redux 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,10 +110,10 @@ export const App = LeRed.memo(({}) =>
|
|
|
110
110
|
|
|
111
111
|
return (
|
|
112
112
|
<div>
|
|
113
|
-
<
|
|
113
|
+
<div>
|
|
114
114
|
<div>Seconds: {counter}</div>
|
|
115
115
|
{(typeof previousCounter !== 'undefined') && (<div>Previously: {previousCounter}</div>)}
|
|
116
|
-
</
|
|
116
|
+
</div>
|
|
117
117
|
<Button color="primary" variant="contained" size="small" onClick={() => dispatch(stateTimer.actions.reset())}>Reset</Button>
|
|
118
118
|
</div>
|
|
119
119
|
);
|