view src/app/ugly-material.module.ts @ 426:8fee76ab8e90

Take a callback as a prop for performing an action when requesting an output
author Lucas Thompson <dev@lucas.im>
date Tue, 06 Jun 2017 22:11:59 +0100
parents 663f1c61fe98
children 7f9fb84816b9
line wrap: on
line source
/**
 * Created by lucast on 25/04/2017.
 */
import {
  MdButtonModule, MdCardModule,
  MdIconModule, MdListModule, MdProgressBarModule, MdProgressSpinnerModule,
  MdSelectModule,
  MdSidenavModule,
  MdToolbarModule
} from '@angular/material';
import {NgModule} from '@angular/core';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';

const importExports = [
  BrowserAnimationsModule,
  MdIconModule,
  MdSidenavModule,
  MdToolbarModule,
  MdButtonModule,
  MdSelectModule,
  MdProgressSpinnerModule,
  MdProgressBarModule,
  MdCardModule,
  MdListModule
];

@NgModule({
  imports: importExports,
  exports: importExports,
})
export class UglyMaterialModule { }