import React from 'react' import type { Item } from '@/app/components/base/select' import { PortalSelect } from '@/app/components/base/select' import Button from '@/app/components/base/button' import { useTranslation } from 'react-i18next' type SetPackageProps = { selectedPackage: string packages: Item[] onSelect: (item: Item) => void onInstall: () => void onBack: () => void } const SetPackage: React.FC = ({ selectedPackage, packages, onSelect, onInstall, onBack }) => { const { t } = useTranslation() return ( <>
) } export default SetPackage