@basictech/react 0.6.0 → 0.7.0-beta.1

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/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { useState } from "react";
2
- import { useBasic, BasicProvider } from "./AuthContext";
2
+ import { useBasic, BasicProvider, BasicStorage, LocalStorageAdapter } from "./AuthContext";
3
3
  import { useLiveQuery as useQuery } from "dexie-react-hooks";
4
4
 
5
5
  // const useQuery = (queryable: any) => {
@@ -34,5 +34,5 @@ import { useLiveQuery as useQuery } from "dexie-react-hooks";
34
34
 
35
35
 
36
36
  export {
37
- useBasic, BasicProvider, useQuery
37
+ useBasic, BasicProvider, useQuery, BasicStorage, LocalStorageAdapter
38
38
  }