/// import { cell, recipe, UI } from "commontools"; export default recipe("LogicalOrUnless", (_state) => { const items = cell([]); return { [UI]: (
{/* Pattern: falsy check || fallback */} {items.get().length || List is empty}
), }; });