mirror of
https://github.com/langgenius/dify.git
synced 2026-02-25 12:16:29 +08:00
13 lines
201 B
TypeScript
13 lines
201 B
TypeScript
import type { FC } from 'react'
|
|
import BaseNode from '../_base/node'
|
|
|
|
const Node: FC = () => {
|
|
return (
|
|
<BaseNode>
|
|
<div>question-classifier</div>
|
|
</BaseNode>
|
|
)
|
|
}
|
|
|
|
export default Node
|