mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-08 17:31:51 +08:00
21 lines
240 B
TypeScript
21 lines
240 B
TypeScript
'use client'
|
|
import React from 'react'
|
|
|
|
type Props = {
|
|
searchText: string
|
|
}
|
|
|
|
const MCPList = ({
|
|
searchText,
|
|
}: Props) => {
|
|
return (
|
|
<>
|
|
<div>
|
|
MCP
|
|
{searchText}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
export default MCPList
|