mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
Add "material theme link" component
This commit is contained in:
parent
9aa4b9c53f
commit
ea600e94c7
18 changed files with 135 additions and 32 deletions
|
|
@ -7,6 +7,7 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { LandingHomeComponent } from './landing-home.component';
|
||||
import { MaterialLandingComponent } from './material-landing/material-landing.component';
|
||||
|
||||
|
||||
export const routes: Routes = [
|
||||
|
|
@ -14,6 +15,10 @@ export const routes: Routes = [
|
|||
path: '',
|
||||
component: LandingHomeComponent,
|
||||
},
|
||||
{
|
||||
path: 'material',
|
||||
component: MaterialLandingComponent,
|
||||
},
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue