Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
CardsModule,
ButtonsModule,
IconsModule
} from 'angular-bootstrap-md';
import { HomeComponent } from './home/home.component';
import { RouterModule } from '@angular/router';
import { DashboardComponent } from './dashboard/dashboard.component';
import { PageNotFoundComponent } from './page-not-found/page-not-found.component';
@NgModule({
imports: [
CommonModule,
NavbarModule,
IconsModule,
RouterModule,
DropdownModule.forRoot(),
CardsModule,
ButtonsModule
],
declarations: [
HeaderComponent,
FooterComponent,
WelcomeComponent,
MainComponent,
HomeComponent,
DashboardComponent,
PageNotFoundComponent
],
exports: [
HeaderComponent,
FooterComponent,
WelcomeComponent,