"use client"; import { IntegrationCard, type WebhookKind, type ComingSoonKind } from "../shared/IntegrationCard"; interface Step1Props { selected: WebhookKind; onSelect: (kind: WebhookKind) => void; t: (key: string) => string; } const KINDS: WebhookKind[] = ["slack", "telegram", "discord", "custom"]; const COMING_SOON: ComingSoonKind[] = ["email", "pagerduty", "teams"]; export function Step1ChooseIntegration({ selected, onSelect, t }: Step1Props) { return (
{t("wizard.step1Desc")}