ngx-feature-toggle-demo
Version:
Your module to handle with feature toggles in Angular applications easier.
21 lines (16 loc) • 829 B
text/typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { FeatureToggleModule } from '../../projects/ngx-feature-toggle/src/lib/ngx-feature-toggle.module';
import { ErrorComponent } from './error/error.component';
import { HomeModule } from './home/home.module';
import { CustomerComponent } from './customer/customer.component';
import { CustomerDetailComponent } from './customer/customer-detail.component';
export class AppModule {}