UNPKG

@nent/core

Version:

Functional elements to add routing, data-binding, dynamic HTML, declarative actions, audio, video, and so much more. Supercharge static HTML files into web apps without script or builds.

14 lines (13 loc) 383 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; export class StateModel { } const store = createStore({ references: [], cache: {}, }); const { state, onChange, reset, dispose } = store; export { store as contentStore, state as contentState, onChange as onContentChange, reset as contentStateReset, dispose as contentStateDispose, };