This commit is contained in:
2025-05-14 21:07:50 +02:00
commit 353b0746fc
13 changed files with 3943 additions and 0 deletions

12
my-app/src/Display.jsx Normal file
View File

@ -0,0 +1,12 @@
function Display (props){
return (
<div className="CounterNum Counter">
Das war ihr {props.myVal}. countdown <br /><br />
</div>
);
}
export default Display;