/* global React */
// Sidebar + Topbar components
function Sidebar({ modules, activeId, onNavigate }) {
const I = window.Icons;
return (
);
}
function Topbar({ user, activeModule }) {
const I = window.Icons;
return (
);
}
Object.assign(window, { Sidebar, Topbar });