LocalForage.js 276 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import localforage from "localforage"; const subForage = localforage.createInstance({ name: "localforage", storeName: "subjects", }); const scheForage = localforage.createInstance({ name: "localforage", storeName: "schedules", }); export { subForage, scheForage };