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