feat: add Empty component to installed plugin list

This commit is contained in:
twwu
2024-11-05 11:05:14 +08:00
parent ebebbb684b
commit 16dee11589
9 changed files with 192 additions and 48 deletions

View File

@ -1,9 +1,9 @@
import type { FC } from 'react'
import PluginItem from '../../plugin-item'
import type { InstalledPlugin } from '../../types'
import type { PluginDetail } from '../../types'
type IPluginListProps = {
pluginList: InstalledPlugin[]
pluginList: PluginDetail[]
}
const PluginList: FC<IPluginListProps> = ({ pluginList }) => {