You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
480 B
19 lines
480 B
import { Suspense } from "react";
|
|
import { AppLayout } from "@/components/layout/app-layout";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { EmbedDemoClient } from "@/app/embed-demo/embed-demo-client";
|
|
|
|
export default function EmbedDemoPage() {
|
|
return (
|
|
<Suspense
|
|
fallback={
|
|
<AppLayout title="宿主嵌入演示">
|
|
<Skeleton className="h-64 w-full" />
|
|
</AppLayout>
|
|
}
|
|
>
|
|
<EmbedDemoClient />
|
|
</Suspense>
|
|
);
|
|
}
|