PAYPAL WORKING

This commit is contained in:
asus
2024-02-24 16:57:31 +01:00
parent 745f5ebf91
commit 61b3f9f2f5
10 changed files with 300 additions and 236 deletions

View File

@@ -0,0 +1,6 @@
// Example function to show a result to the user. Your site's UI library can be used instead.
export function resultMessage(message) {
const container = document.querySelector("#result-message");
container.innerHTML = message;
}