Files
dify/web/app/components/workflow/skill/editor-body.tsx
2026-01-15 16:14:51 +08:00

15 lines
311 B
TypeScript

import type { FC, PropsWithChildren } from 'react'
import * as React from 'react'
type EditorBodyProps = PropsWithChildren
const EditorBody: FC<EditorBodyProps> = ({ children }) => {
return (
<div className="flex min-h-0 flex-1">
{children}
</div>
)
}
export default React.memo(EditorBody)