UNPKG

svelte-tree-view

Version:

Display JSON objects in a customizable tree-view

9 lines (8 loc) 236 B
import { writable } from 'svelte/store'; export const createRootElementStore = () => { const rootElementStore = writable(null); return { set: rootElementStore.set, subscribe: rootElementStore.subscribe }; };