import React from "react" import {Homepage} from "@/apps/Homepage/Homepage.tsx" import {SSH} from "@/apps/SSH/Terminal/SSH.tsx" import {SSHTunnel} from "@/apps/SSH/Tunnel/SSHTunnel.tsx"; import {ConfigEditor} from "@/apps/SSH/Config Editor/ConfigEditor.tsx"; import {SSHManager} from "@/apps/SSH/Manager/SSHManager.tsx" function App() { const [view, setView] = React.useState("homepage") const renderActiveView = () => { switch (view) { case "homepage": return case "ssh_manager": return case "terminal": return case "tunnel": return case "config_editor": return } } return (
{renderActiveView()}
) } export default App