Skip to content

Commit

Permalink
docs: fix store initialisation syntax in usage with other libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
samrith-s committed Jan 3, 2025
1 parent 6c9ca8b commit 654c8fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ First, let's create a store with an initial state.
```ts
import { Store } from "@genshi/core";

const [store, useStore] = new Store({
const store = new Store({
count: 0,
});
```
Expand Down

0 comments on commit 654c8fe

Please sign in to comment.