feat: nodes placeholder

This commit is contained in:
Joel
2024-02-06 17:49:07 +08:00
parent f3c78fe73d
commit 1a4c2e77c4
24 changed files with 346 additions and 7 deletions

View File

@ -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

View File

@ -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