Files
Werewolf/client/src/scripts/notFound.js
2022-01-11 20:36:10 -05:00

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();
}