import { sidebar, sidebarItem } from "@hedia/hexui/components/sidebar";
export default function () {
return sidebar(
{ open: true },
sidebarItem({ href: "#", title: "Dashboard", active: true }),
sidebarItem({ href: "#", title: "Apps" }),
sidebarItem({ href: "#", title: "Users" }),
);
}