update fix

This commit is contained in:
2025-12-19 11:32:50 +07:00
parent 47f154b326
commit e8d0ee3452
8 changed files with 67 additions and 43 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
const PreLoader = () => {
return (
<div className="fixed top-0 left-0 z-999999 flex h-screen w-screen items-center justify-center bg-white">
<div className="border-blue h-16 w-16 animate-spin rounded-full border-4 border-solid border-t-transparent"></div>
</div>
);
};
export default PreLoader;