mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
15 lines
382 B
TypeScript
15 lines
382 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { ActionSheetPageComponent } from './action-sheet-page.component';
|
|
|
|
const routes: Routes = [
|
|
{ path: '', component: ActionSheetPageComponent }
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class ActionSheetRoutingModule { }
|