1
2
3
4
export let getAdd = async ({ num1, num2 }) => {
console.log("num1:" + num1 + " num2:" + num2);
return parseInt(num1) * parseInt(num2);
};