Skip to content

Instantly share code, notes, and snippets.

@sis0k0
Created August 7, 2017 10:35
Show Gist options
  • Save sis0k0/a7cf055f791bf55fb46e233f272fe7d3 to your computer and use it in GitHub Desktop.
Save sis0k0/a7cf055f791bf55fb46e233f272fe7d3 to your computer and use it in GitHub Desktop.
import { NativeScriptRouterModule } from "nativescript-angular/router";
import { routes as homeRoutes } from "./home/home.routes";
export const routes = [
...homeRoutes,
{
path: "ninjas",
loadChildren: "./ninjas/ninjas.module#NinjasModule",
}
];
export const routing = NativeScriptRouterModule.forRoot(routes);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment