9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
import menuInit from './header';
|
|
import initFooterShapes from './footer';
|
|
import handleScrollTop from './utilities/scroll-top';
|
|
window.addEventListener('load', function () {
|
|
// menuInit();
|
|
initFooterShapes();
|
|
handleScrollTop();
|
|
});
|