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.

index.tsx 304B

12345678910111213
  1. import BuiltInPipelineList from './built-in-pipeline-list'
  2. import CustomizedList from './customized-list'
  3. const List = () => {
  4. return (
  5. <div className='grow gap-y-1 overflow-y-auto px-16 pb-[60px] pt-1'>
  6. <BuiltInPipelineList />
  7. <CustomizedList />
  8. </div>
  9. )
  10. }
  11. export default List