@lowentry/react-redux 1.0.2 → 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 +4 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,14 +110,11 @@ export const App = LeRed.memo(({}) =>
|
|
|
110
110
|
|
|
111
111
|
return (
|
|
112
112
|
<div>
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
</>)}
|
|
118
|
-
<br/>
|
|
113
|
+
<div>
|
|
114
|
+
<div>Seconds: {counter}</div>
|
|
115
|
+
{(typeof previousCounter !== 'undefined') && (<div>Previously: {previousCounter}</div>)}
|
|
116
|
+
</div>
|
|
119
117
|
<Button color="primary" variant="contained" size="small" onClick={() => dispatch(stateTimer.actions.reset())}>Reset</Button>
|
|
120
|
-
<br/>
|
|
121
118
|
</div>
|
|
122
119
|
);
|
|
123
120
|
});
|