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.

13 lines (12 loc) 388 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; class StateModel { } const store = createStore({ autoNext: true, }); const { state, onChange, reset, dispose } = store; export { store as presentationStore, state as presentationState, onChange as onPresentationChange, reset as presentationStateReset, dispose as presentationStateDispose, };