From ffc417e222b7f7b4d5abb7cd7cde1e1f47a56b1d 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:35:30 +0100 Subject: [PATCH] feat: new counter support --- examples/web/react/app.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/web/react/app.tsx b/examples/web/react/app.tsx index 7406a525..77c3468b 100644 --- a/examples/web/react/app.tsx +++ b/examples/web/react/app.tsx @@ -10,8 +10,8 @@ export const App = () => { const getText = () => `Hello World ${count}`; const onClick = () => setCount(count + 1); const pairs = () => [ - <Pair key="tobias" name={"Tobias"} value="2"></Pair>, - <Pair key="matias" name={"Matias"} value="3"></Pair> + <Pair key="tobias" name={"Tobias"} value={`count`}></Pair>, + <Pair key="matias" name={"Matias"} value={"3"}></Pair> ]; return ( <> -- GitLab