(1) I have a standard page transition animation wrapping my Switch / in App /. That page transition applies on each Route /.
(2) I then have animations inside specific components. For example I have a multi-stage transition inside of LandingPage / that also triggers on mount.
The problem is that the animation for the standard page transition in (1) happens at the same time as the specific animation inside a specific component (2).
I can't use useChain because the transitions aren't in the same component.
Is there a way to make sure that animation (2) only occurs after animation (1) completes (even though (1) is in a parent component)?
Cheers