Files
formbricks/apps/web/components/Loading.tsx
Matti Nannt 5c378bc8ce Feature/monorepo #95 (#105)
Move repository into a monorepo with turborepo and pnpm.
This is a big change in the way the code is organized, used and deployed.
2022-10-13 09:46:43 +02:00

17 lines
511 B
TypeScript

import { TailSpin } from "react-loader-spinner";
export default function Loading() {
return (
<div className="min-h-screen bg-white px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
<div className="mx-auto max-w-max">
<main>
<div className="flex justify-center">
<TailSpin color="#1f2937" height={30} width={30} />
</div>
<p className="text-ui-gray-dark mt-5 text-sm">Loading...</p>
</main>
</div>
</div>
);
}