Skip to main content
Module

x/nano_jsx/state.ts

🎯 SSR first, lightweight 1kB JSX library.
Go to Latest
File
/** Holds the state of the whole application. */export const _state: Map<string, any> = new Map()
/** Clears the state of the whole application. */export const _clearState = () => { _state.clear()}