import{Component}from'@angular/core';import{RouterOutlet}from'@angular/router';import{slideInAnimation}from'./animations';@Component({selector:'app-root',templateUrl:'app.component.html',styleUrls:['app.component.css'],animations:[slideInAnimation]})exportclassAppComponent{getAnimationData(outlet:RouterOutlet){returnoutlet&&outlet.activatedRouteData&&outlet.activatedRouteData.animation;}}/*Copyright Google LLC. All Rights Reserved.Use of this source code is governed by an MIT-style license thatcan be found in the LICENSE file at http://angular.io/license*/