Files
sarlink-portal/components/full-page-loader.tsx
i701 9b2f2c1528
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 11m8s
add admin checks for admin pages and run biome formating 🔨
2025-07-25 13:31:12 +05:00

10 lines
237 B
TypeScript

import React from "react";
import { Loader2 } from "lucide-react";
export default function FullPageLoader() {
return (
<div className="flex items-center justify-center h-screen">
<Loader2 className="animate-spin" />
</div>
);
}