UNPKG

classy-solid

Version:

Solid.js reactivity patterns for classes, and class components.

11 lines (10 loc) 392 B
import { untracked } from './untracked.js'; /** * @deprecated This is no longer needed for making signal fields work. The * only other use case was to make the constructor untracked.Use the new * `@untracked` decorator instead. This is now an alias for `@untracked`. */ export function reactive(value, context) { return untracked(value, context); } //# sourceMappingURL=reactive.js.map