chore(): move demos/angular to angular/test

This commit is contained in:
Adam Bradley
2018-03-21 14:05:02 -05:00
parent 99610f7f08
commit 3829886a74
133 changed files with 0 additions and 4 deletions

View File

@ -0,0 +1,14 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { SegmentPageComponent } from './segment-page.component';
const routes: Routes = [
{ path: '', component: SegmentPageComponent }
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class SegmentRoutingModule { }