mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
14 lines
304 B
Lua
14 lines
304 B
Lua
-- Level 2 layout module
|
|
|
|
---@class LayoutModule
|
|
---@field sidebar fun(items: UIComponent[]): UIComponent
|
|
---@field main fun(children: UIComponent[]): UIComponent
|
|
|
|
---@type LayoutModule
|
|
local layout = {
|
|
sidebar = require("layout.sidebar"),
|
|
main = require("layout.main")
|
|
}
|
|
|
|
return layout
|