@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.
Files changed (2) hide show
  1. package/README.md +2 -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
- <p>
113
+ <div>
114
114
  <div>Seconds: {counter}</div>
115
115
  {(typeof previousCounter !== 'undefined') && (<div>Previously: {previousCounter}</div>)}
116
- </p>
116
+ </div>
117
117
  <Button color="primary" variant="contained" size="small" onClick={() => dispatch(stateTimer.actions.reset())}>Reset</Button>
118
118
  </div>
119
119
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowentry/react-redux",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Provides utilities for React and Redux.",