From 790da06d2d741074c674c6a330e68a71889e11c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Mon, 18 Jul 2022 09:36:01 +0100 Subject: [PATCH] feat: new counter --- examples/web/react/app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/web/react/app.tsx b/examples/web/react/app.tsx index 77c3468b..0603a554 100644 --- a/examples/web/react/app.tsx +++ b/examples/web/react/app.tsx @@ -10,7 +10,7 @@ export const App = () => { const getText = () => `Hello World ${count}`; const onClick = () => setCount(count + 1); const pairs = () => [ - <Pair key="tobias" name={"Tobias"} value={`count`}></Pair>, + <Pair key="tobias" name={"Tobias"} value={`Count ${count}`}></Pair>, <Pair key="matias" name={"Matias"} value={"3"}></Pair> ]; return ( -- GitLab