diff --git a/src/app/history/loading.tsx b/src/app/history/loading.tsx index 467c3a68b..049fe2cbc 100644 --- a/src/app/history/loading.tsx +++ b/src/app/history/loading.tsx @@ -1,11 +1,29 @@ -import { CourseSkeleton } from '@/components/CourseCard'; +import { Fragment } from 'react'; export default function Loading() { return ( -
- {[1, 2, 3].map((v) => ( - - ))} +
+
+
+ {[1, 2].map((_, index) => { + return ( + +
+
+ {[1, 2, 3, 4].map((_, index) => ( +
+
+
+
+ ))} +
+ + ); + })} +
); }