From e248097390e35a0c06ec123a23f3d68247335e35 Mon Sep 17 00:00:00 2001 From: BrianRosamilia Date: Mon, 6 Apr 2020 04:29:53 -0400 Subject: [PATCH] docs(readme): fix a closing tag [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e427865..54ecd25 100644 --- a/README.md +++ b/README.md @@ -501,7 +501,7 @@ import { view, store } from '@risingstack/react-easy-state' export default view(() => { const counter = store({ num: 0 }) const increment = () => counter.num++ - return {counter.num} + return {counter.num} }) ```