dify/web/app/components/datasets/create-from-pipeline/index.tsx
Stephen Zhou f2842da397
chore(web): new lint setup (#30020)
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
2025-12-23 16:58:55 +08:00

21 lines
515 B
TypeScript

'use client'
import Effect from '../../base/effect'
import Footer from './footer'
import Header from './header'
import List from './list'
const CreateFromPipeline = () => {
return (
<div
className="relative flex h-[calc(100vh-56px)] flex-col overflow-hidden rounded-t-2xl border-t border-effects-highlight bg-background-default-subtle"
>
<Effect className="left-8 top-[-34px] opacity-20" />
<Header />
<List />
<Footer />
</div>
)
}
export default CreateFromPipeline