Mercurial > hg > ugly-duckling
view src/app/ugly-material.module.ts @ 498:4219ebadf7f5
Fix note deduction edge case.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Mon, 14 Aug 2017 09:01:06 +0100 |
parents | 7f9fb84816b9 |
children | cf4a17efb5d4 |
line wrap: on
line source
/** * Created by lucast on 25/04/2017. */ import { MdButtonModule, MdCardModule, MdIconModule, MdListModule, MdProgressBarModule, MdProgressSpinnerModule, MdSelectModule, MdSidenavModule, MdSnackBarModule, 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, MdSnackBarModule ]; @NgModule({ imports: importExports, exports: importExports, }) export class UglyMaterialModule { }