// module.js
// Plugs a simple "File Manager" slide into the global AppItems array.
(function () {
// Ensure the global array exists
window.AppItems = window.AppItems || [];
// Section for the overlay
const section = {
title: "File Manager",
html: `
<h2>File Manager</h2>
<p>This overlay represents the File Manager module.</p>
<p>It will later handle file listing, upload, etc.</p>
`,
};
// Register it
window.AppItems.push(section);
// Helpful console trace
console.log("[module.js] Section added:", section.title);
})();