pollo/src/app/_components/Loading.tsx
2023-09-01 20:38:27 -06:00

11 lines
213 B
TypeScript

"use client";
const Loading = () => {
return (
<div className="flex items-center justify-center">
<span className="loading loading-dots loading-lg"></span>
</div>
);
};
export default Loading;