presenton/servers/nextjs/app/loading.tsx
2025-05-10 19:57:24 +05:45

12 lines
286 B
TypeScript

import { Loader2 } from 'lucide-react'
import React from 'react'
const loading = () => {
return (
<div className="h-screen w-screen flex justify-center items-center">
<Loader2 className="h-10 w-10 animate-spin" />
</div>
)
}
export default loading