Move dashboard to client components. (#26)

* Move to client components

* Move to client components

* Fix create team
This commit is contained in:
KM Koushik
2024-06-02 11:03:50 +10:00
committed by GitHub
parent f183905c9f
commit 4a37c66865
10 changed files with 297 additions and 178 deletions

View File

@@ -0,0 +1,9 @@
import { Logo } from "@unsend/ui/src/logo";
export const FullScreenLoading = () => {
return (
<div className="flex items-center justify-center min-h-screen">
<Logo className="w-10 h-10" />
</div>
);
};