2020-01-27 18:40:18 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
2020-01-29 17:10:57 +00:00
|
|
|
import { CommonModule } from '@angular/common';
|
2020-01-27 18:40:18 +00:00
|
|
|
import { DevToolsTabsComponent } from './devtools-tabs.component';
|
|
|
|
|
|
|
|
|
|
import { MatTabsModule } from '@angular/material/tabs';
|
2020-02-05 15:39:46 +00:00
|
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
|
|
|
|
2020-02-04 15:34:34 +00:00
|
|
|
import { DirectiveExplorerModule } from './directive-explorer/directive-explorer.module';
|
|
|
|
|
import { ProfilerModule } from './directive-explorer/profiler/profiler.module';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [DevToolsTabsComponent],
|
2020-02-05 15:39:46 +00:00
|
|
|
imports: [MatTabsModule, MatIconModule, DirectiveExplorerModule, ProfilerModule, CommonModule],
|
2020-02-07 21:25:16 +00:00
|
|
|
exports: [DevToolsTabsComponent],
|
2020-01-27 18:40:18 +00:00
|
|
|
})
|
2020-02-07 21:25:16 +00:00
|
|
|
export class DevToolsTabModule {}
|