@trystan2k/fleshy-jsoneditor
Version:
LitElement custom element that wraps http://github.com/josdejong/jsoneditor based on https://github.com/Juicy/juicy-jsoneditor
18 lines (13 loc) • 328 B
JavaScript
import { addParameters, setCustomElements } from '@open-wc/demoing-storybook';
addParameters({
docs: {
iframeHeight: '200px',
},
});
async function run() {
const customElements = await (
await fetch(new URL('../custom-elements.json', import.meta.url))
).json();
setCustomElements(customElements);
}
run();