UniveralList

This commit is contained in:
2026-05-26 06:29:06 +00:00
parent e0a3dea68a
commit 3c4cf657c3
13 changed files with 350 additions and 258 deletions

View File

@@ -0,0 +1,11 @@
// src/components/common/LoadingSpinner.jsx
import { h } from 'preact';
export default function LoadingSpinner({ text = "Učitavanje podataka..." }) {
return (
<div class="flex items-center justify-center p-12 text-gray-500">
<div class="animate-spin mr-3 h-5 w-5 border-2 border-gray-400 border-t-transparent rounded-full"></div>
{text}
</div>
);
}