fix mini app bot father
This commit is contained in:
20
apps/frontend/app/mini-apps/bot-father/page.tsx
Normal file
20
apps/frontend/app/mini-apps/bot-father/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
'use client';
|
||||
|
||||
import { Suspense } from 'react';
|
||||
import { Loader2 } from 'lucide-react';
|
||||
import { BotFatherMiniAppContent } from './content';
|
||||
|
||||
export default function BotFatherMiniAppPage() {
|
||||
return (
|
||||
<Suspense
|
||||
fallback={
|
||||
<div className="flex min-h-screen items-center justify-center p-6 text-sm text-[#667085]">
|
||||
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
||||
Загрузка...
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<BotFatherMiniAppContent />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user