Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

14 lines
285 B
JavaScript

import { AnimationFeature } from './animation/index.mjs';
import { ExitAnimationFeature } from './animation/exit.mjs';
const animations = {
animation: {
Feature: AnimationFeature,
},
exit: {
Feature: ExitAnimationFeature,
},
};
export { animations };