17 lines
389 B
TypeScript
17 lines
389 B
TypeScript
'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>
|
||
);
|
||
}
|