angular/devtools/projects/ng-devtools/src/lib/devtools-tabs/profiler/profiler.module.ts
AleksanderBodurri 78afe889fd refactor(devtools): migrate material legacy components to mdc (#51590)
Removes all legacy angular material imports and moves devtools over to mdc.

PR Close #51590
2023-08-31 17:31:42 +00:00

39 lines
1.2 KiB
TypeScript

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {MatButtonModule} from '@angular/material/button';
import {MatCardModule} from '@angular/material/card';
import {MatDialogModule} from '@angular/material/dialog';
import {MatIconModule} from '@angular/material/icon';
import {MatSelectModule} from '@angular/material/select';
import {MatTooltipModule} from '@angular/material/tooltip';
import {ProfilerImportDialogComponent} from './profiler-import-dialog.component';
import {ProfilerComponent} from './profiler.component';
import {TimelineModule} from './timeline/timeline.module';
@NgModule({
declarations: [ProfilerComponent, ProfilerImportDialogComponent],
imports: [
CommonModule,
MatDialogModule,
MatIconModule,
MatSelectModule,
FormsModule,
TimelineModule,
MatButtonModule,
MatCardModule,
MatTooltipModule,
],
exports: [ProfilerComponent],
})
export class ProfilerModule {
}