10 lines
396 B
TypeScript
10 lines
396 B
TypeScript
export default function AgriculturalMachineryLoading() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 flex items-center justify-center">
|
|
<div className="text-center">
|
|
<div className="animate-spin rounded-full h-12 w-12 border-b-2 border-green-600 mx-auto mb-4"></div>
|
|
<p className="text-gray-600">正在加载农机管理系统...</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |