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) 353 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; class StateModel { } const store = createStore({ autoplay: true, }); const { state, onChange, reset, dispose } = store; export { store as videoStore, state as videoState, onChange as onVideoChange, reset as videoStateReset, dispose as videoStateDispose, };