ashishgkwd/ngx-mat-daterange-picker

View on GitHub
src/app/app.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { NgxMatDrpModule } from './modules/ngx-mat-drp/ngx-mat-drp.module';


@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    NgxMatDrpModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }