Angular - Animations
You wrote this animation trigger but it does not run:
What is the likely reason it does not animate when the element appears?
trigger('slideIn', [
transition('void => *', [style({ transform: 'translateX(-100%)' }), animate('300ms ease-in')])
])What is the likely reason it does not animate when the element appears?
