mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 18:54:53 +00:00
afa51500a5
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
|