mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-14 20:41:21 +08:00
f2842da397
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
14 lines
304 B
TypeScript
14 lines
304 B
TypeScript
import BuiltInPipelineList from './built-in-pipeline-list'
|
|
import CustomizedList from './customized-list'
|
|
|
|
const List = () => {
|
|
return (
|
|
<div className="grow gap-y-1 overflow-y-auto px-16 pb-[60px] pt-1">
|
|
<BuiltInPipelineList />
|
|
<CustomizedList />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default List
|