Inizio bozza aggiunta progetto gestione TaskMan

This commit is contained in:
Samuele Locatelli
2024-10-25 19:18:50 +02:00
parent 5bd120c4fa
commit 9d6f692b4d
12 changed files with 479 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
// This is a JavaScript module that is loaded on demand. It can export any number of
// functions, and may import other JavaScript modules if required.
export function showPrompt(message) {
return prompt(message, 'Type anything here');
}