dify/web/app/components/datasets/create-from-pipeline/index.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

19 lines
504 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="top-[-34px] left-8 opacity-20" />
<Header />
<List />
<Footer />
</div>
)
}
export default CreateFromPipeline