mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
chore: base layout
This commit is contained in:
parent
1fb884a633
commit
d82d691681
19 changed files with 195 additions and 44 deletions
19
src/app/pages/pages.module.ts
Normal file
19
src/app/pages/pages.module.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
|
||||
import { PagesComponent } from './pages.component';
|
||||
import { DashboardComponent } from './dashboard/dashboard.component';
|
||||
import { PagesRoutingModule } from './pages-routing.module';
|
||||
import { ThemeModule } from '../@theme/theme.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
PagesRoutingModule,
|
||||
ThemeModule
|
||||
],
|
||||
declarations: [
|
||||
PagesComponent,
|
||||
DashboardComponent
|
||||
]
|
||||
})
|
||||
export class PagesModule {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue