Reconfigure Project deleting old configuration of React that was not working

This commit is contained in:
2026-03-23 20:01:45 -03:00
parent ca16fae163
commit b8aa073c24
95 changed files with 5797 additions and 5684 deletions
+8
View File
@@ -0,0 +1,8 @@
function toggleDiv() {
var div = document.getElementById("background_ambuigue");
if (div.style.display === "flex") {
div.style.display = "none";
} else {
div.style.display = "flex";
}
}