Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/concepts/catalogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export const RIZZ_CHARTS_CATALOG = {

and the hello_world_banner implementation

{% raw %}
```typescript
import { DynamicComponent } from '@a2ui/angular';
import { Component, Input } from '@angular/core';
Expand All @@ -274,6 +275,7 @@ export class HelloWorldBanner extends DynamicComponent {
@Input() message?: string;
}
```
{% endraw %}

You can see a working example of a client renderer in the [Rizzcharts demo](../samples/client/angular/projects/rizzcharts/src/a2ui-catalog/catalog.ts).

Expand Down