pollo/app/components/LoadingIndicator.tsx
Atridad Lahiji b086f719c8
Old stuff
2023-11-29 12:43:52 -07:00

9 lines
216 B
TypeScript

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