You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
379 B
React

1 year ago
import React from "react";
import { Spinner } from "flowbite-react";
export default function Loading() {
return (
<div className="absolute bg-slate-800 bg-opacity-50 h-screen w-screen">
<div className="h-screen w-screen absolute flex items-center justify-center">
<Spinner className="h-20 w-20"/>
</div>
</div>
)
}