Files
ckb-SuperAdmin/Cunkebao/app/workspace/moments-sync/components/content-selector.tsx
笔记本里的永平 5ff15472f5 feat: 本次提交更新内容如下
场景获客列表搞定
2025-07-07 17:08:27 +08:00

18 lines
518 B
TypeScript

"use client"
import { ContentSelector as CommonContentSelector } from "@/components/common/ContentSelector"
import type { ContentLibrary } from "@/components/common/ContentSelector"
interface ContentSelectorProps {
selectedLibraries: ContentLibrary[]
onLibrariesChange: (libraries: ContentLibrary[]) => void
onPrevious: () => void
onNext: () => void
onSave: () => void
onCancel: () => void
}
export function ContentSelector(props: ContentSelectorProps) {
return <CommonContentSelector {...props} />
}