mirror of
https://github.com/langgenius/dify.git
synced 2026-02-25 20:26:31 +08:00
10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
import type { FC } from 'react'
|
|
|
|
const Panel: FC = () => {
|
|
return (
|
|
<div>start panel inputs</div>
|
|
)
|
|
}
|
|
|
|
export default Panel
|