Implement CurrencyConverter

This commit is contained in:
2025-05-04 21:12:08 +02:00
commit b9b6dbbe09
15 changed files with 4054 additions and 0 deletions

14
src/Button.jsx Normal file
View File

@ -0,0 +1,14 @@
// import React, { Component } from "react";
// import './Button.css';
function Button (props){
return (
<button className="CounterNum" onClick={() => props.callBack()}>
{props.myText}
</button>
);
}
export default Button;