返回 VideoClaw
page.tsx
1 import { Suspense } from 'react';
2 import Sandbox from '@/components/Sandbox/Sandbox';
3
4 export default function SandboxPage() {
5 return (
6 <Suspense fallback={<div className="p-8">加载中...</div>}>
7 <Sandbox />
8 </Suspense>
9 );
10 }
11
11 lines Plain Text