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