This commit is contained in:
2026-05-22 14:29:46 +08:00
parent 249e361b59
commit d898d98a0e
5 changed files with 105 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import ProxyList from "./screens/ProxyList.jsx";
import PlanPreview from "./screens/PlanPreview.jsx";
import RunLog from "./screens/RunLog.jsx";
import FrpConfigForm from "./screens/FrpConfigForm.jsx";
import SshKeyPrompt from "./screens/SshKeyPrompt.jsx";
function App() {
const { exit } = useApp();
@@ -67,6 +68,8 @@ function renderScreen(screen, nav) {
return <ProxyForm nav={nav} {...screen.props} />;
case "proxy-list":
return <ProxyList nav={nav} {...screen.props} />;
case "ssh-key":
return <SshKeyPrompt nav={nav} {...screen.props} />;
case "plan":
return <PlanPreview nav={nav} {...screen.props} />;
case "run":