context-scoped-state 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="logo.svg" alt="context-scoped-state logo" width="120" height="120">
|
|
3
|
+
<h1>context-scoped-state</h1>
|
|
4
|
+
<p><strong>State management that respects component boundaries.</strong></p>
|
|
5
|
+
</div>
|
|
4
6
|
|
|
5
7
|
Unlike global state libraries (Redux, Zustand), `context-scoped-state` keeps your state where it belongs — scoped to the component tree that needs it. Each context provider creates an independent store instance, making your components truly reusable and your tests truly isolated.
|
|
6
8
|
|