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) 343 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; class StateModel { } const store = createStore({ darkMode: null, }); const { state, onChange, reset, dispose } = store; export { store as appStore, state as appState, onChange as onAppChange, reset as appStateReset, dispose as appStateDispose, };