You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- 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
|