Skip to content

Commit a8e04b1

Browse files
authored
Update Loader.jsx
1 parent 9884346 commit a8e04b1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

client/src/components/Loader.jsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ import React from 'react';
22

33
const Loader = ({ size = 16 }) => {
44
return (
5-
<div className="flex justify-center items-center py-16">
5+
<div className="flex flex-col justify-center items-center py-16 space-y-4">
66
<div
77
className="loader ease-linear rounded-full border-8 border-t-8 border-gray-200"
88
style={{
99
width: `${size * 4}px`,
1010
height: `${size * 4}px`,
1111
}}
1212
></div>
13+
<p className="text-teal-600 font-medium text-lg">
14+
Render is loading, please wait...
15+
</p>
1316
</div>
1417
);
1518
};

0 commit comments

Comments
 (0)