import type { FC, ReactNode } from 'react' import type { PluginDetail } from '../../types' import PluginItem from '../../plugin-item' type IPluginListProps = { children?: ReactNode pluginList: PluginDetail[] } const PluginList: FC = ({ children, pluginList }) => { return (
{pluginList.map(plugin => ( ))} {children}
) } export default PluginList