component ProductGrid { props { title = "" description = "" empty = false emptyText = "No items available." class = "" } view {
{#if title}

{title}

{/if} {#if description}

{description}

{/if} {#if empty}
{emptyText}
{:else}
{/if}
} }