mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-26 10:42:16 -06:00
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<div className="min-h-screen px-4 py-16 bg-white sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8">
|
|
<div className="mx-auto max-w-max">
|
|
<main className="sm:flex">
|
|
<p className="mt-1 text-base text-ui-gray-dark">Loading...</p>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|