We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6664301 commit 5ffd68dCopy full SHA for 5ffd68d
1 file changed
src/components/common/LoadingPage.tsx
@@ -0,0 +1,10 @@
1
+import React from 'react';
2
+const LoadingPage: React.FC = () => (
3
+ <div className='min-h-screen flex items-center justify-center bg-gray-50'>
4
+ <div className='text-center'>
5
+ <div className='w-16 h-16 border-4 border-blue-200 border-t-blue-600 rounded-full animate-spin mx-auto mb-4' />
6
+ <p className='text-gray-500 font-medium'>Loading...</p>
7
+ </div>
8
9
+);
10
+export default LoadingPage;
0 commit comments