mirror of
https://github.com/langgenius/dify.git
synced 2026-03-05 15:47:06 +08:00
14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
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
|