You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closes#4077
BREAKING CHANGES:
The LetModule is removed in favor of the standalone LetDirective.
BEFORE:
import { LetModule } from '@ngrx/component';
@NgModule({
imports: [
// ... other imports
LetModule,
],
})
export class MyFeatureModule {}
AFTER:
import { LetDirective } from '@ngrx/component';
@NgModule({
imports: [
// ... other imports
LetDirective,
],
})
export class MyFeatureModule {}
0 commit comments