import { GetV2SaleorAppsResponse } from "@dashboard/new-apps/marketplace.types"; import { getAppDetails } from "@dashboard/new-apps/utils"; import { Card, CardContent } from "@material-ui/core"; import React from "react"; import { useIntl } from "react-intl"; import AppListCardActions from "./AppListCardActions"; import AppListCardDescription from "./AppListCardDescription"; import AppListCardIntegrations from "./AppListCardIntegrations"; import AppListCardLinks from "./AppListCardLinks"; import { useStyles } from "./styles"; interface AppListCardProps { app: GetV2SaleorAppsResponse.SaleorApp; navigateToAppInstallPage?: (manifestUrl: string) => void; navigateToVercelDeploymentPage?: (vercelDeploymentUrl: string) => void; } const AppListCard: React.FC = ({ app, navigateToAppInstallPage, navigateToVercelDeploymentPage, }) => { const classes = useStyles(); const intl = useIntl(); const details = getAppDetails( intl, app, navigateToAppInstallPage, navigateToVercelDeploymentPage, ); return ( <> ); }; AppListCard.displayName = "AppListCard"; export default AppListCard;