mirror of
https://github.com/asimonson1125/asimonson1125.github.io.git
synced 2026-02-25 05:09:49 -06:00
4 lines
112 B
JavaScript
4 lines
112 B
JavaScript
export function toggleMenu(){
|
|
const e = document.querySelector(".navControl");
|
|
e.style.display = "";
|
|
} |