animations.mjs 285 B

12345678910111213
  1. import { AnimationFeature } from './animation/index.mjs';
  2. import { ExitAnimationFeature } from './animation/exit.mjs';
  3. const animations = {
  4. animation: {
  5. Feature: AnimationFeature,
  6. },
  7. exit: {
  8. Feature: ExitAnimationFeature,
  9. },
  10. };
  11. export { animations };