dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PlaygroundModule cluster_PlaygroundModule_imports cluster_PlaygroundModule_declarations cluster_PlaygroundModule_exports PlaygroundComponent PlaygroundComponent PlaygroundModule PlaygroundModule PlaygroundComponent->PlaygroundModule PlaygroundComponent PlaygroundComponent PlaygroundModule->PlaygroundComponent FileUploadModule FileUploadModule FileUploadModule->PlaygroundModule TreeModule TreeModule TreeModule->PlaygroundModule UploadModule UploadModule UploadModule->PlaygroundModule

File

src/app/modules/playground/playground.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PlaygroundComponent } from './playground.component';
import { MatTabsModule } from '@angular/material/tabs';
import { TreeModule } from '../tree/tree.module';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatButtonModule } from '@angular/material/button';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatInputModule } from '@angular/material/input';
import { FileUploadModule } from '../../components/file-upload/file-upload.module';
import { UploadModule } from '../../components/upload/upload.module';

@NgModule({
  declarations: [PlaygroundComponent],
  imports: [
    CommonModule,
    MatTabsModule,
    TreeModule,
    MatFormFieldModule,
    MatInputModule,
    MatButtonModule,
    FormsModule,
    ReactiveFormsModule,
    FileUploadModule,
    UploadModule,
  ],
  exports: [PlaygroundComponent],
})
export class PlaygroundModule {}

results matching ""

    No results matching ""