summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAsko Nõmm <asko@nmm.ee>2025-04-14 00:35:10 +0300
committerAsko Nõmm <asko@nmm.ee>2025-04-14 00:35:10 +0300
commit8c28384a49013af97e1536440f04fb7a524bfe12 (patch)
treeb982797b8dbcd01aba13300c23a5d285b8ce8155 /README.md
parent53c9dad18a612c97cacc3c0fe5eeb01e6ffcc026 (diff)
Fix ShapeX import casing
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 3838ad8..e3a50a6 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Create scalable event-driven applications with ShapeX, inspired by [re-frame](ht
This is an example application that demonstrates how to use the ShapeX library. It has a single starting point event called `request`, which returns an updated state, which changes the `counter`. When that state changes, the subscriber for the `counter` state fires.
```typescript
-import ShapeX from "ShapeX";
+import ShapeX from "shapex";
type AppState = {
counter: number;