Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created August 25, 2018 12:39
Embed
What would you like to do?
Split testing two features with feature toggling
<app-feature-a *ngIf="isKillerFeatureEnabled; else componentB"></app-feature-a>
<ng-template #componentB>
<app-feature-b></app-feature-b>
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment