react-web3-storage 1.0.44 → 1.0.45

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/package.json +1 -1
  2. package/src/index.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-web3-storage",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "description": "Simple web3 storage for react dapp",
5
5
  "main": "src/index.js",
6
6
  "author": "Stas Prohetamine",
package/src/index.js CHANGED
@@ -4,6 +4,7 @@ import useStorage from './use-storage.js'
4
4
  import useReadStorage from './use-read-storage.js'
5
5
  import useTableStorage from './use-table-storage.js'
6
6
  import useApp from './use-app.js'
7
+ import config from '../config.js'
7
8
 
8
9
  export {
9
10
  Provider,
@@ -11,5 +12,6 @@ export {
11
12
  useStorage,
12
13
  useReadStorage,
13
14
  useTableStorage,
14
- useApp
15
+ useApp,
16
+ config
15
17
  }