mirror of
https://github.com/langgenius/dify.git
synced 2025-12-16 20:52:32 +00: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
|