The async pipe does the subscription in view bindings
<h3>{{(game | async)?.name}}</h3>
The ? is only necessary when null values might be emitted.
The async pipe does the subscription in view bindings
<h3>{{(game | async)?.name}}</h3>
The ? is only necessary when null values might be emitted.