mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
feat(nav_menu): implement menu item, group, and divider components feat(ui_header): create logo, user, and actions sections for header rendering
11 lines
174 B
Lua
11 lines
174 B
Lua
-- Dashboard section layout
|
|
local function section(title, children)
|
|
return {
|
|
type = "section",
|
|
title = title,
|
|
children = children or {}
|
|
}
|
|
end
|
|
|
|
return section
|