From 0b7097082d1687347b4c748976e388452331a718 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Fri, 20 Jun 2025 00:38:27 -0400 Subject: [PATCH] refactor: Update export order of animation components for consistency --- src/components/animations/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/animations/index.js b/src/components/animations/index.js index 27a1638..54af463 100644 --- a/src/components/animations/index.js +++ b/src/components/animations/index.js @@ -1,10 +1,9 @@ // Animation Components -export { default as PageTransition } from './PageTransition' +export { default as AnimatedList } from './AnimatedList' export { default as LoadingScreen } from './LoadingScreen' -export { default as SkeletonLoader } from './SkeletonLoader' +export { default as PageTransition } from './PageTransition' export { default as SmoothButton } from './SmoothButton' export { default as SmoothCard } from './SmoothCard' -export { default as AnimatedList } from './AnimatedList' export { default as StaggeredList } from './StaggeredList' // Animation Styles