mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-04-05 12:41:27 +00:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
const Loader = () => {
|
|
return (
|
|
<div className="flex justify-center items-center h-screen">
|
|
<div className="w-9 h-9 border-4 border-t-4 border-t-primary border-gray-200 rounded-full animate-spin"></div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Loader;
|