From 8a35feef7fc39e8193574196f786e490a2664faf Mon Sep 17 00:00:00 2001 From: djmil Date: Mon, 31 Jul 2023 14:05:46 +0200 Subject: [PATCH] basic interqctivity --- src/App.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 5aeff81..d6fa0b3 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,18 @@ import './App.css'; function Square({ value }) { - return ; + function handleClick() { + console.log('clicked!'); + } + + return ( + + ); } function App() {