mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
chore(): move demos/angular to angular/test
This commit is contained in:
14
angular/test/nav/src/app/card/card-routing.module.ts
Normal file
14
angular/test/nav/src/app/card/card-routing.module.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
|
||||
import { CardPageComponent } from './card-page.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: '', component: CardPageComponent }
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class CardRoutingModule { }
|
Reference in New Issue
Block a user