| 1 | import { Suspense } from 'react'; |
| 2 | import PipelinePage from '@/components/pipelines/PipelinePage'; |
| 3 | |
| 4 | export default function ActionTransferPipelinePage() { |
| 5 | return ( |
| 6 | <Suspense fallback={null}> |
| 7 | <PipelinePage |
| 8 | pipeline="action_transfer" |
| 9 | title="动作迁移" |
| 10 | subtitle="用参考图片和动作视频生成角色动作迁移结果" |
| 11 | /> |
| 12 | </Suspense> |
| 13 | ); |
| 14 | } |
| 15 |