mirror of
https://github.com/langgenius/dify.git
synced 2026-04-21 15:28:42 +08:00
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
|