mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-05 19:19:35 +00:00
15 lines
317 B
Lua
15 lines
317 B
Lua
--- Render empty state component
|
|
---@return EmptyStateComponent Empty state component
|
|
local function empty_state()
|
|
return {
|
|
type = "empty_state",
|
|
props = {
|
|
icon = "inbox",
|
|
title = "No posts yet",
|
|
message = "Be the first to share something!"
|
|
}
|
|
}
|
|
end
|
|
|
|
return empty_state
|