mirror of
https://github.com/langgenius/dify.git
synced 2026-03-02 06:16:39 +08:00
10 lines
116 B
TypeScript
10 lines
116 B
TypeScript
import type { FC } from 'react'
|
|
|
|
const Node: FC = () => {
|
|
return (
|
|
<div>http</div>
|
|
)
|
|
}
|
|
|
|
export default Node
|