organizing with a nice context provider and now have access to the data clean

This commit is contained in:
Arjun Patel
2022-01-14 14:44:09 -08:00
parent a0c36ec924
commit 5e73b75d73
5 changed files with 409 additions and 225 deletions
+21
View File
@@ -0,0 +1,21 @@
import { Divider } from "antd";
export default function Loading() {
return (
<div
className="container mx-auto flex flex-col max-w-md m-10 bg-white p-10 rounded-lg shadow-md space-y-5 items-center animate-pulse"
>
{/* header */}
<div className="flex flex-row space-x-2">
<div className="animate-pulse w-8 h-8 border-4 rounded-full border-teal-300" role="status">
</div>
<div className="text-lg text-center">Loading</div>
</div>
</div>
)
}