Skip to content

Commit

Permalink
Merge pull request #20 from sidmohanty11/fix-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcisbee authored Jun 23, 2024
2 parents d763252 + df12a17 commit 8a0615d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,9 @@ import { counter } from "./store/counter.ts"
`,
})
export class App {
public count = useStore(store, (s) => s.count);
public count = useStore(counter, (s) => s.count);
public increment() {
store.increment();
counter.increment();
}
}
```
Expand Down

0 comments on commit 8a0615d

Please sign in to comment.