Skip to content
Snippets Groups Projects
Select Git revision
  • 15883ac11a1d5e067e173c9ddba3c0e80ca1d0df
  • master default protected
2 results

textual_2048.cpython-36.pyc

Blame
  • upload.module.ts 1.23 KiB
    import { NgModule } from '@angular/core'
    import { CommonModule } from '@angular/common'
    //Components
    import { UploadComponent } from './upload.component'
    import {StudentChartDialogComponent} from './dialog/studentChartDialog.component'
    import {ImageRightsDialogComponent} from './dialog/imageRightsDialog.component'
    import {ParentalAuthDialogComponent} from './dialog/parentalAuthDialog.component'
    import {
      MatButtonModule,
      MatDialogModule,
      MatListModule,
      MatProgressBarModule,
    } from '@angular/material'
    
    import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
    import { FlexLayoutModule } from '@angular/flex-layout'
    import { UploadService } from './upload.service'
    import { HttpClientModule } from '@angular/common/http'
    
    @NgModule({
      imports: [
        CommonModule,
        MatButtonModule,
        MatDialogModule,
        MatListModule,
        FlexLayoutModule,
        HttpClientModule,
        BrowserAnimationsModule,
        MatProgressBarModule,
      ],
      declarations: [ ParentalAuthDialogComponent,ImageRightsDialogComponent,StudentChartDialogComponent],
      exports: [UploadComponent], 
      providers: [UploadService],
      entryComponents : [ParentalAuthDialogComponent,ImageRightsDialogComponent,StudentChartDialogComponent]
    })
    export class UploadModule {}