LocalForage.js 276 Bytes
import localforage from "localforage";

const subForage = localforage.createInstance({
  name: "localforage",
  storeName: "subjects",
});

const scheForage = localforage.createInstance({
  name: "localforage",
  storeName: "schedules",
});

export { subForage, scheForage };