Angular - Animations
Identify the error in this Angular route animation code snippet:
@Component({
animations: [
trigger('routeAnimations', [
transition('HomePage => AboutPage', [
animate('500ms ease-in')
])
])
]
})
export class AppComponent {}