import React from 'react' import Button from '@/app/components/base/button' import { useTranslation } from 'react-i18next' type InstalledProps = { repoUrl: string selectedVersion: string selectedPackage: string onClose: () => void } const InfoRow = ({ label, value }: { label: string; value: string }) => (
{label}
{value}
) const Installed: React.FC = ({ repoUrl, selectedVersion, selectedPackage, onClose }) => { const { t } = useTranslation() return ( <>
The plugin has been installed successfully.
{[ { label: t('plugin.installModal.labels.repository'), value: repoUrl }, { label: t('plugin.installModal.labels.version'), value: selectedVersion }, { label: t('plugin.installModal.labels.package'), value: selectedPackage }, ].map(({ label, value }) => ( ))}
) } export default Installed