mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
26 lines
816 B
TypeScript
26 lines
816 B
TypeScript
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 (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-md flex items-center gap-2">
|
|
<ScrollTextIcon className="h-5" />
|
|
<span>{t("common:quickUsage.title")}</span>
|
|
</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<ol className="list-inside list-decimal space-y-4 text-sm">
|
|
<li>{t("probeshell:quickUsage.step1")}</li>
|
|
<li>{t("probeshell:quickUsage.step2")}</li>
|
|
<li>{t("probeshell:quickUsage.step3")}</li>
|
|
</ol>
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|