Skip to content

Commit c948434

Browse files
committed
update loading component styling
1 parent f6dd1eb commit c948434

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • examples_new/microservices/client/src/components

examples_new/microservices/client/src/components/Loading.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ const Loading = () => {
1313
}, 500);
1414
}, [dots]);
1515

16-
return <div>Loading</div>;
16+
return (
17+
<div className="w-full h-screen flex flex-col justify-center items-center text-light bg-dark">
18+
Loading{dots}
19+
</div>
20+
);
1721
};
1822

1923
export default Loading;

0 commit comments

Comments
 (0)