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

feat: new counter

parent ffc417e2
No related branches found
No related tags found
1 merge request!8Support for react.js components
Pipeline #1064 passed
...@@ -10,7 +10,7 @@ export const App = () => { ...@@ -10,7 +10,7 @@ export const App = () => {
const getText = () => `Hello World ${count}`; const getText = () => `Hello World ${count}`;
const onClick = () => setCount(count + 1); const onClick = () => setCount(count + 1);
const pairs = () => [ 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> <Pair key="matias" name={"Matias"} value={"3"}></Pair>
]; ];
return ( 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