initial commit
This commit is contained in:
47
src/app/layouts/admin-layout/admin-layout.module.ts
Normal file
47
src/app/layouts/admin-layout/admin-layout.module.ts
Normal file
@ -0,0 +1,47 @@
|
||||
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 {}
|
Reference in New Issue
Block a user