forked from mirrors/pronouns.cc
11 lines
308 B
TypeScript
11 lines
308 B
TypeScript
|
import { ThreeDots } from "react-bootstrap-icons";
|
||
|
|
||
|
export default function Loading() {
|
||
|
return (
|
||
|
<div className="flex flex-col pt-32 items-center">
|
||
|
<ThreeDots size={64} className="animate-bounce" aria-hidden="true" />
|
||
|
<span className="font-bold text-xl">Loading...</span>
|
||
|
</div>
|
||
|
);
|
||
|
}
|