Mercurial > hg > ugly-duckling
view src/app/ugly-material.module.ts @ 509:041468f553e1 tip master
Merge pull request #57 from LucasThompson/fix/session-stack-max-call-stack
Fix accidental recursion in PersistentStack
author | Lucas Thompson <LucasThompson@users.noreply.github.com> |
---|---|
date | Mon, 27 Nov 2017 11:04:30 +0000 |
parents | cf4a17efb5d4 |
children |
line wrap: on
line source
/** * Created by lucast on 25/04/2017. */ import { MatButtonModule, MatCardModule, MatIconModule, MatListModule, MatProgressBarModule, MatProgressSpinnerModule, MatSelectModule, MatSidenavModule, MatSnackBarModule, MatToolbarModule } from '@angular/material'; import {NgModule} from '@angular/core'; import {BrowserAnimationsModule} from '@angular/platform-browser/animations'; const importExports = [ BrowserAnimationsModule, MatIconModule, MatSidenavModule, MatToolbarModule, MatButtonModule, MatSelectModule, MatProgressSpinnerModule, MatProgressBarModule, MatCardModule, MatListModule, MatSnackBarModule ]; @NgModule({ imports: importExports, exports: importExports, }) export class UglyMaterialModule { }