13 lines
365 B
JavaScript
13 lines
365 B
JavaScript
import editorInit from './editor';
|
|
import menuInit from './menus';
|
|
import singleConseil from './single-conseil';
|
|
import SchemaBulletPointsInit from './schema-bullet-points';
|
|
// window.addEventListener('load', function () {});
|
|
|
|
window.addEventListener('DOMContentLoaded', (event) => {
|
|
menuInit();
|
|
SchemaBulletPointsInit();
|
|
singleConseil();
|
|
editorInit();
|
|
});
|