import { useParams } from 'common' import { PropsWithChildren } from 'react' import InlineSVG from 'react-inlinesvg' import IntegrationWindowLayout from './IntegrationWindowLayout' import { BASE_PATH } from '@/lib/constants' import { useIntegrationInstallationSnapshot } from '@/state/integration-installation' const VERCEL_ICON = (
) const VercelIntegrationWindowLayout = ({ children }: PropsWithChildren<{}>) => { const { externalId } = useParams() const snapshot = useIntegrationInstallationSnapshot() const title = externalId ? 'Supabase + Vercel Deploy Button' : 'Supabase + Vercel Integration Marketplace Connector' return ( {children} ) } export default VercelIntegrationWindowLayout