Skip to content

Commit 5ffd68d

Browse files
committed
feat(components): add LoadingPage component
1 parent 6664301 commit 5ffd68d

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
</div>
9+
);
10+
export default LoadingPage;

0 commit comments

Comments
 (0)