mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 10:01:59 +08:00
chore(angular): update angular tests to ng v6 and latest stencil
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { Routes, RouterModule } from '@angular/router';
|
||||
|
||||
import { BasicInputsPageComponent } from './basic-inputs-page.component';
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: '', component: BasicInputsPageComponent }
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class BasicInputsPageRoutingModule { }
|
Reference in New Issue
Block a user