From e8daad1a525b6ae4d9503f36feda2fb1693f4558 Mon Sep 17 00:00:00 2001 From: Nikolai Papin Date: Fri, 19 Dec 2025 21:17:16 +0300 Subject: [PATCH] chore: explained why hello world is there --- frontend/src/public/js/helloWorld.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/public/js/helloWorld.js b/frontend/src/public/js/helloWorld.js index 68a8625..2a426a1 100644 --- a/frontend/src/public/js/helloWorld.js +++ b/frontend/src/public/js/helloWorld.js @@ -1,3 +1,5 @@ +// Какой-то скрипт на JS, просто чтобы был + function displayMessage() { document.getElementById('message').innerText = 'Hello World'; }