loading time
This commit is contained in:
@@ -16,7 +16,7 @@ const Home = ({ courses, settings }: { courses: CoursesProps[], settings: Settin
|
|||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const loadCourses = async () => {
|
const loadCourses = async () => {
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
await new Promise(resolve => setTimeout(resolve, 300)); // 0.5 second delay
|
await new Promise(resolve => setTimeout(resolve, 100)); // 0.5 second delay
|
||||||
setLoading(false);
|
setLoading(false);
|
||||||
}; loadCourses();
|
}; loadCourses();
|
||||||
}, []);
|
}, []);
|
||||||
|
Reference in New Issue
Block a user