import { ScrollTextIcon } from "lucide-react"; import { useTranslation } from "react-i18next"; import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; export function QuickUsage() { const { t } = useTranslation(["common", "probeshell"]); return ( {t("common:quickUsage.title")}
  1. {t("probeshell:quickUsage.step1")}
  2. {t("probeshell:quickUsage.step2")}
  3. {t("probeshell:quickUsage.step3")}
); }