mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 23:04:57 +00:00
feat(nav_menu): implement menu item, group, and divider components feat(ui_header): create logo, user, and actions sections for header rendering
10 lines
160 B
Lua
10 lines
160 B
Lua
-- Header actions section
|
|
local function actions_section(actions)
|
|
return {
|
|
type = "actions",
|
|
children = actions or {}
|
|
}
|
|
end
|
|
|
|
return actions_section
|