clean up state management

This commit is contained in:
AlecM33
2022-01-10 21:02:29 -05:00
parent 7ca184cfee
commit 3b14ae3978
16 changed files with 349 additions and 129 deletions

View File

@@ -0,0 +1,9 @@
import { injectNavbar } from "../modules/Navbar.js";
const howToUse = () => { injectNavbar(); };
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
module.exports = howToUse;
} else {
howToUse();
}