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
12 lines
181 B
Lua
12 lines
181 B
Lua
-- Dashboard grid layout
|
|
local function grid(columns, rows, gap)
|
|
return {
|
|
type = "grid",
|
|
columns = columns or 3,
|
|
rows = rows,
|
|
gap = gap or 16
|
|
}
|
|
end
|
|
|
|
return grid
|