mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
22 lines
492 B
Lua
22 lines
492 B
Lua
-- Supergod content component
|
|
|
|
---@class ContentComponent
|
|
---@field type string
|
|
---@field fullWidth boolean
|
|
---@field multiTenant boolean
|
|
---@field children table[]
|
|
|
|
---Returns the supergod content component configuration
|
|
---@param children? table[]
|
|
---@return ContentComponent
|
|
local function supergod_content(children)
|
|
return {
|
|
type = "supergod_content",
|
|
fullWidth = true,
|
|
multiTenant = true,
|
|
children = children or {}
|
|
}
|
|
end
|
|
|
|
return supergod_content
|