Files
metabuilder/packages/ui_header/seed/scripts/render/actions.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

10 lines
160 B
Lua

-- Header actions section
local function actions_section(actions)
return {
type = "actions",
children = actions or {}
}
end
return actions_section