demo / frontend /src /components /Spinner.jsx
AIVLAD's picture
feat: add React frontend with nginx reverse proxy
f75bff1
export default function Spinner() {
return (
<div className="flex items-center justify-center p-8">
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
</div>
)
}