mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 18:33:01 +00:00
loading page
This commit is contained in:
8
packages/frontend/src/components/loading.tsx
Normal file
8
packages/frontend/src/components/loading.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function Loading({ children }: { children?: React.ReactNode }) {
|
||||
return (
|
||||
<div className="flex flex-col items-center justify-center gap-4 w-full h-[100vh]">
|
||||
<h1>Loading...</h1>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user