mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 09:28:04 +08:00
feat: nodes placeholder
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
import type { FC } from 'react'
|
||||
import BaseNode from '../_base/node'
|
||||
|
||||
const Node: FC = () => {
|
||||
return (
|
||||
<BaseNode>
|
||||
<div>template-transform</div>
|
||||
</BaseNode>
|
||||
)
|
||||
}
|
||||
|
||||
export default Node
|
||||
@ -0,0 +1,13 @@
|
||||
import type { FC } from 'react'
|
||||
import BasePanel from '../_base/panel'
|
||||
|
||||
const Panel: FC = () => {
|
||||
return (
|
||||
<BasePanel
|
||||
inputsElement={<div>start panel inputs</div>}
|
||||
outputsElement={<div>start panel outputs</div>}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
export default Panel
|
||||
Reference in New Issue
Block a user