Files
metabuilder/packages/dashboard/seed/scripts/layout/section.lua

20 lines
418 B
Lua

-- Dashboard section layout
---@class SectionLayoutConfig
---@field type string
---@field title string
---@field children table
---@param title string Section title
---@param children? table Child elements (default: {})
---@return SectionLayoutConfig
local function section(title, children)
return {
type = "section",
title = title,
children = children or {}
}
end
return section