'use client' import type { FC } from 'react' import React from 'react' import type { PluginDeclaration } from '../../../types' import Card from '../../../card' import Button from '@/app/components/base/button' import { pluginManifestToCardPluginProps } from '../../utils' type Props = { payload: PluginDeclaration onCancel: () => void } const Installed: FC = ({ payload, onCancel }) => { return ( <>

The plugin has been installed successfully.

{/* Action Buttons */}
) } export default React.memo(Installed)