Files
Agent-Tools/apps/desktop/src/pages/MyCli.tsx
T

20 lines
720 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { SquareTerminal } from "lucide-react";
/** 我的 CLIPRD §7):版本 / 路径 / 授权状态。Wave 0 尚无已安装 CLI,展示空态。 */
export function MyCliPage() {
return (
<div className="placeholder-page">
<div className="placeholder-icon">
<SquareTerminal size={40} strokeWidth={1.5} aria-hidden="true" />
</div>
<h2 className="placeholder-title">暂无已安装 CLI</h2>
<p className="placeholder-desc">
安装功能在 Wave 1 开放。届时这里会展示每个 CLI 的版本、路径与授权状态。
</p>
<button type="button" className="btn btn-primary" disabled>
CLI 目录看看
</button>
</div>
);
}