Description:
The current implementation uses Immer.js for state mutation and fast-deep-equal for structural comparison of reaction dependencies.
We want to make these components pluggable to support alternative approaches such as:
- Pure JavaScript (without Immer)
- Immutable.js
- Custom strategies (e.g. using different equality functions or immutable data libs)
Tasks: