Angular - Directives
Identify the error in this Angular template snippet:
<div [ngSwitch]="mode"> <div *ngSwitchCase=active>Active Mode</div> <div *ngSwitchCase="inactive">Inactive Mode</div> </div>
