mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-02-08 22:49:58 +00:00
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="flex justify-center items-center h-64">
|
|
<div className="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-blue-500"></div>
|
|
</div>
|
|
);
|
|
}
|