@@ -3,6 +3,7 @@ import { Routes } from "@angular/router";
33import { NativeScriptRouterModule } from "nativescript-angular/router" ;
44
55import { AnimationsListComponent } from "./animations-list.component" ;
6+ import { AnimationBuilderComponent } from "./animation-builder.component" ;
67import { ExternalAnimationComponent } from "./external-animation.component" ;
78import { FadeInOutComponent } from "./fade-in-out.component" ;
89import { OptionsComponent } from "./options.component" ;
@@ -14,6 +15,7 @@ import { QueryStaggerComponent } from "./query-stagger.component";
1415const routes : Routes = [
1516 { path : "" , pathMatch : "full" , redirectTo : "list" } ,
1617 { path : "list" , component : AnimationsListComponent } ,
18+ { path : "builder" , component : AnimationBuilderComponent } ,
1719 { path : "external" , component : ExternalAnimationComponent } ,
1820 { path : "fade-in-out" , component : FadeInOutComponent } ,
1921 { path : "options" , component : OptionsComponent } ,
@@ -32,6 +34,7 @@ export class AppRoutingModule { }
3234
3335export const routedComponents = [
3436 AnimationsListComponent ,
37+ AnimationBuilderComponent ,
3538 ExternalAnimationComponent ,
3639 FadeInOutComponent ,
3740 OptionsComponent ,
0 commit comments