mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-27 08:17:50 +01:00
10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
import { injectNavbar } from '../modules/Navbar.js';
|
|
|
|
const notFound = () => { injectNavbar(); };
|
|
|
|
if (typeof module !== 'undefined' && typeof module.exports !== 'undefined') {
|
|
module.exports = notFound;
|
|
} else {
|
|
notFound();
|
|
}
|