Projet

Général

Profil

Paste
Statistiques
| Branche: | Révision:

root / src / app / settings / settings-routing.module.ts @ f3d5fa3b

Historique | Voir | Annoter | Télécharger (444 octets)

1 f3d5fa3b Eric Seigne
import { NgModule } from "@angular/core";
2
import { Routes } from "@angular/router";
3
import { NativeScriptRouterModule } from "nativescript-angular/router";
4
5
import { SettingsComponent } from "./settings.component";
6
7
const routes: Routes = [
8
    { path: "", component: SettingsComponent }
9
];
10
11
@NgModule({
12
    imports: [NativeScriptRouterModule.forChild(routes)],
13
    exports: [NativeScriptRouterModule]
14
})
15
export class SettingsRoutingModule { }
Redmine Appliance - Powered by TurnKey Linux