Files
metabuilder/packages/dashboard/seed/scripts/layout/section.lua
JohnDoe6345789 afa51500a5 feat(layout): add flex, grid, section, and stat components for dashboard layout
feat(nav_menu): implement menu item, group, and divider components
feat(ui_header): create logo, user, and actions sections for header rendering
2025-12-30 00:01:01 +00:00

11 lines
174 B
Lua

-- Dashboard section layout
local function section(title, children)
return {
type = "section",
title = title,
children = children or {}
}
end
return section