mirror of
https://github.com/langgenius/dify.git
synced 2026-02-26 12:37:18 +08:00
13 lines
206 B
TypeScript
13 lines
206 B
TypeScript
import type { FC } from 'react'
|
|
import BasePanel from '../_base/panel'
|
|
|
|
const Panel: FC = () => {
|
|
return (
|
|
<BasePanel>
|
|
<div>start panel inputs</div>
|
|
</BasePanel>
|
|
)
|
|
}
|
|
|
|
export default Panel
|