Skip to content
Snippets Groups Projects
Verified Commit ffc417e2 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

feat: new counter support

parent e514c2f1
No related branches found
No related tags found
1 merge request!8Support for react.js components
Pipeline #1063 passed
......@@ -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 (
<>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment