We're a place where coders share, stay up-to-date and grow their careers.
Come to our Slack workspace, and Max will set you up on the new site 🙌
I think it would be useful to show an example with a for loop such as:
<ng-container *rxSubscribe="order$; let order"> <div *ngFor="let item of order"> {{ item }} </div> </ng-container>
Did you consider supporting microsyntax? Something like
<ng-container *rxSubscribe="state$ next state"> ...sync-full template... </ng-container>
Maybe even
<ng-container *rxSubscribe="state$ next state; error as err; complete: onComplete"> ...sync-full template... </ng-container>
Come to our Slack workspace, and Max will set you up on the new site 🙌
I think it would be useful to show an example with a for loop such as:
Did you consider supporting microsyntax? Something like
Maybe even