When adding Angular examples (docs, snippets, templates), ensure they are both syntactically/semantically valid and shown in the correct template context.

Key rules:

Example (template context):

<div class="user-container">
  @if (count() === 1) {
    <b>Count is 1</b>
  } @else {
    <b>Count is not 1</b>
  }
</div>

(And ensure count is a signal defined in the component, e.g., const count = signal(0);.)