mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
15 lines
539 B
TypeScript
15 lines
539 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { RouterTreeComponent } from './router-tree.component';
|
|
|
|
@NgModule({
|
|
declarations: [RouterTreeComponent],
|
|
imports: [CommonModule, MatDialogModule, MatSelectModule, FormsModule],
|
|
exports: [RouterTreeComponent],
|
|
entryComponents: [],
|
|
})
|
|
export class RouterTreeModule {}
|