@nativescript/template-drawer-navigation-ng
Version:
Side navigation template
14 lines (10 loc) • 415 B
text/typescript
import { NgModule } from '@angular/core'
import { Routes } from '@angular/router'
import { NativeScriptRouterModule } from '@nativescript/angular'
import { BrowseComponent } from './browse.component'
const routes: Routes = [{ path: '', component: BrowseComponent }]
export class BrowseRoutingModule {}