Skip to content

Commit aa72466

Browse files
committed
chore: update branding to "Classy Store" in documentation and examples
1 parent a27248a commit aa72466

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

examples/rendering/src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<link rel="icon" type="image/svg+xml" href="./logo.svg" />
8-
<title>classyStore Demo</title>
8+
<title>Classy Store Demo</title>
99
</head>
1010

1111
<body>

website/docs/ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# classyStore — Architecture
1+
# Classy Store — Architecture
22

33
Internal design documentation for contributors and maintainers.
44

website/docs/TUTORIAL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# classyStore Tutorial
1+
# Classy Store Tutorial
22

3-
`classyStore` is a reactive state library for React built on ES proxies. You define state as plain classes, wrap them with `store()`, and read them with `useStore()`. There are no Providers, no observers, no reducers, and no extra TypeScript interfaces to define your state shape — just classes and a hook. The library is ~3.5 KB gzipped, batches synchronous mutations into a single re-render, and uses structural sharing for efficient change detection.
3+
`Classy Store` is a reactive state library for React built on ES proxies. You define state as plain classes, wrap them with `store()`, and read them with `useStore()`. There are no Providers, no observers, no reducers, and no extra TypeScript interfaces to define your state shape — just classes and a hook. The library is ~3.5 KB gzipped, batches synchronous mutations into a single re-render, and uses structural sharing for efficient change detection.
44

55
## Quick Start
66

website/docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# classyStore
1+
# Classy Store
22

33
Class-based reactive state management for React. Write plain TypeScript classes — get fine-grained reactivity, immutable snapshots, and zero-boilerplate hooks.
44

@@ -516,7 +516,7 @@ For `Map` and `Set` semantics, use [`reactiveMap()`](#reactivemapk-vinitial) and
516516
517517
## Comparison with other libraries
518518
519-
| Feature | classyStore | Zustand | MobX | Valtio |
519+
| Feature | Classy Store | Zustand | MobX | Valtio |
520520
|---------|-----------------|---------|------|--------|
521521
| Class-based stores | Yes | No | Yes | No |
522522
| No observer/Provider | Yes | Yes | No | Yes |

0 commit comments

Comments
 (0)