Angular - Animations
Find the mistake in this animation trigger:
trigger('zoom', [
state('small', style({ transform: 'scale(0.5)' })),
state('large', style({ transform: 'scale(1.5)' })),
transition('small => large', animate(300))
])