mirror of
https://github.com/langgenius/dify.git
synced 2026-04-10 03:33:37 +08:00
10 lines
124 B
TypeScript
10 lines
124 B
TypeScript
import type { FC } from 'react'
|
|
|
|
const Panel: FC = () => {
|
|
return (
|
|
<div>Tool input</div>
|
|
)
|
|
}
|
|
|
|
export default Panel
|