-
-
+
);
}
diff --git a/app/clinics/loading.js b/app/clinics/loading.js
index a6cbbbb..e5e814f 100644
--- a/app/clinics/loading.js
+++ b/app/clinics/loading.js
@@ -1,11 +1,18 @@
-import { Skeleton } from "@mui/material";
+"use client";
+
+import ItemClinic from "@/components/clinics/list/ItemClinic";
export default function Loading() {
return (
-
- {Array.from({ length: 6 }).map((_, idx) => (
-
- ))}
+
+
+ {Array.from({ length: 6 }).map((_, idx) => (
+ {}} />
+ ))}
+
);
}
diff --git a/app/doctor/[slug]/loading.js b/app/doctor/[slug]/loading.js
index ac2d137..e2c1fb0 100644
--- a/app/doctor/[slug]/loading.js
+++ b/app/doctor/[slug]/loading.js
@@ -1,17 +1,27 @@
-import { Skeleton } from "@mui/material";
+import CircularLoading from "@/app/component/loading/Circular";
+import CustomLoading from "@/app/component/loading/Custom";
+import TextLoading from "@/app/component/loading/Text";
export default function Loading() {
return (
-
-
-
-
-
-
-
+
);
}
diff --git a/app/doctors/loading.js b/app/doctors/loading.js
index a6cbbbb..1348869 100644
--- a/app/doctors/loading.js
+++ b/app/doctors/loading.js
@@ -1,11 +1,17 @@
-import { Skeleton } from "@mui/material";
+"use client";
+
+import ItemDoctor from "@/app/component/ItemDoctor";
export default function Loading() {
return (
-
- {Array.from({ length: 6 }).map((_, idx) => (
-
- ))}
+
+
+
+ {Array.from({ length: 6 }).map((_, idx) => (
+ {}} />
+ ))}
+
+
);
}