mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 18:58:10 +00:00
13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
"use client";
|
|
import { PacmanLoader } from "react-spinners";
|
|
|
|
const Loading = () => {
|
|
return (
|
|
<div className="flex items-center justify-center h-screen">
|
|
<PacmanLoader />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Loading;
|