mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
🐛 Fix loader
This commit is contained in:
parent
cf90e7a6df
commit
e20b04a259
2 changed files with 7 additions and 10 deletions
|
@ -1,3 +1,9 @@
|
|||
import { Spinner } from "@/components/spinner";
|
||||
|
||||
export default function Loading() {
|
||||
return null;
|
||||
return (
|
||||
<div className="flex h-96 items-center justify-center">
|
||||
<Spinner />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
import { Spinner } from "@/components/spinner";
|
||||
|
||||
export default function Loading() {
|
||||
return (
|
||||
<div className="flex h-screen items-center justify-center">
|
||||
<Spinner />
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Reference in a new issue