mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
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 { }
|