mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-24 08:44:25 +01:00
Co-authored-by: Nahiyan Khan <nahiyan@squareup.com> Co-authored-by: Taylor Ho <taylorkmho@gmail.com> Co-authored-by: Lily Delalande <119957291+lily-de@users.noreply.github.com> Co-authored-by: Spence <spencrmartin@gmail.com> Co-authored-by: spencrmartin <spencermartin@squareup.com> Co-authored-by: Judson Stephenson <Jud@users.noreply.github.com> Co-authored-by: Max Novich <mnovich@squareup.com> Co-authored-by: Best Codes <106822363+The-Best-Codes@users.noreply.github.com> Co-authored-by: caroline-a-mckenzie <cmckenzie@squareup.com> Co-authored-by: Michael Neale <michael.neale@gmail.com>
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import GooseLogo from './components/GooseLogo';
|
|
|
|
export default function SuspenseLoader() {
|
|
return (
|
|
<div className="flex flex-col items-start justify-end w-screen h-screen overflow-hidden p-6 page-transition">
|
|
<div className="flex gap-2 items-center justify-end">
|
|
<GooseLogo size="small" />
|
|
<span className="text-text-muted">Loading...</span>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|