48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { AdminLayoutRoutes } from './admin-layout.routing';
|
|
import { DashboardComponent } from '../../dashboard/dashboard.component';
|
|
import { UserProfileComponent } from '../../user-profile/user-profile.component';
|
|
import { TableListComponent } from '../../table-list/table-list.component';
|
|
import { TypographyComponent } from '../../typography/typography.component';
|
|
import { IconsComponent } from '../../icons/icons.component';
|
|
import { MapsComponent } from '../../maps/maps.component';
|
|
import { NotificationsComponent } from '../../notifications/notifications.component';
|
|
import { UpgradeComponent } from '../../upgrade/upgrade.component';
|
|
|
|
import {
|
|
MatButtonModule,
|
|
MatInputModule,
|
|
MatRippleModule,
|
|
MatFormFieldModule,
|
|
MatTooltipModule,
|
|
MatSelectModule
|
|
} from '@angular/material';
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
RouterModule.forChild(AdminLayoutRoutes),
|
|
FormsModule,
|
|
MatButtonModule,
|
|
MatRippleModule,
|
|
MatFormFieldModule,
|
|
MatInputModule,
|
|
MatSelectModule,
|
|
MatTooltipModule,
|
|
],
|
|
declarations: [
|
|
DashboardComponent,
|
|
UserProfileComponent,
|
|
TableListComponent,
|
|
TypographyComponent,
|
|
IconsComponent,
|
|
MapsComponent,
|
|
NotificationsComponent,
|
|
UpgradeComponent,
|
|
]
|
|
})
|
|
|
|
export class AdminLayoutModule {}
|