import PluginItem from '../../plugin-item' import { customTool, extensionDallE, modelGPT4, toolNotion } from '@/app/components/plugins/card/card-mock' const PluginList = () => { const pluginList = [toolNotion, extensionDallE, modelGPT4, customTool] return (
{pluginList.map((plugin, index) => ( {}} source={'debug'} /> ))}
) } export default PluginList