mirror of
https://github.com/langgenius/dify.git
synced 2026-02-15 15:34:26 +08:00
10 lines
145 B
TypeScript
10 lines
145 B
TypeScript
import { memo } from 'react'
|
|
|
|
const GroupPanel = () => {
|
|
return null
|
|
}
|
|
|
|
GroupPanel.displayName = 'GroupPanel'
|
|
|
|
export default memo(GroupPanel)
|