@lowentry/react-redux 1.0.2 → 1.0.3

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 +4 -7
  2. 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
- Seconds: {counter}
114
- <br/>
115
- {(typeof previousCounter !== 'undefined') && (<>Previously: {previousCounter}
116
- <br/>
117
- </>)}
118
- <br/>
113
+ <p>
114
+ <div>Seconds: {counter}</div>
115
+ {(typeof previousCounter !== 'undefined') && (<div>Previously: {previousCounter}</div>)}
116
+ </p>
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
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowentry/react-redux",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Provides utilities for React and Redux.",