11 lines
213 B
TypeScript
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;
|