feat: 本次提交更新内容如下
场景获客列表搞定
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"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} />
|
||||
}
|
||||
Reference in New Issue
Block a user