Add js conf.

This commit is contained in:
Florian THIERRY
2022-05-22 13:00:28 +02:00
parent 56916a7970
commit 5945d1d2f4
3 changed files with 10 additions and 2 deletions

7
www/app.js Normal file
View File

@@ -0,0 +1,7 @@
function helloFromJS() {
document.getElementById('app-js').innerHTML = 'Application JS';
}
window.onload = () => {
helloFromJS();
}