import { Menu } from 'antd' import IonIcon from '@sentre/antd-ionicon' import { useUninstallApp } from 'hooks/useUninstallApp' import { useGoToApp } from 'hooks/useGotoApp' export type AppActionsProps = { appId: string } export const AppActions = ({ appId }: AppActionsProps) => { const onOpenInNewTab = useGoToApp({ appId, blank: false }) const onUninstall = useUninstallApp(appId) return (
, onClick: onOpenInNewTab, }, { key: 'uninstall', label: 'Uninstall', icon: