Monorepo containing core modules of Zeichen.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

14 wiersze
299 B

  1. import { Plugin } from '../core/plugin'
  2. import Storage from './Storage'
  3. type PluginConfig = {}
  4. const LocalStoragePlugin: Plugin<PluginConfig> = config => ({
  5. currentUserId,
  6. }) => {
  7. new Storage(currentUserId, 'notes')
  8. new Storage(currentUserId, 'folders')
  9. }
  10. export default LocalStoragePlugin