import { createContext } from 'react' import localforage from 'localforage' interface StorageContextProps { getPersistedStorage: () => typeof localforage } export const StorageContext = createContext({ getPersistedStorage: () => localforage, })